Browse Source

Style sheet by dredmorbius

Bob Mottram 11 years ago
parent
commit
d6dfdf855c
4 changed files with 55 additions and 3 deletions
  1. 4
    3
      beaglebone.txt
  2. BIN
      images/freedombone.jpg
  3. BIN
      images/freedombone2.jpg
  4. 51
    0
      index.css

+ 4
- 3
beaglebone.txt View File

@@ -4,14 +4,15 @@
4 4
 #+KEYWORDS: freedombox, debian, beaglebone, friendica, email, web server, home server, internet, censorship, surveillance, social network, irc, jabber, chat
5 5
 #+DESCRIPTION: Turn the Beaglebone Black into a personal communications server
6 6
 #+OPTIONS: ^:nil
7
+#+STYLE: <link rel="stylesheet" type="text/css" href="index.css" />
7 8
 
8 9
 #+BEGIN_CENTER
9 10
 *How to turn the Beaglebone Black into a FreedomBox-like personal communications server*
10 11
 #+END_CENTER
11 12
 
12
-#+BEGIN_CENTER
13
-[[[[file:images/freedombone.jpg]]]]
14
-#+END_CENTER
13
+#+CAPTION: BeagleBone Black
14
+#+ATTR_HTML: :alt BeagleBone Black image :align center
15
+[[[[./images/freedombone.jpg]]]]
15 16
 
16 17
 #+BEGIN_CENTER
17 18
 Copyright (C)  2014  Bob Mottram

BIN
images/freedombone.jpg View File


BIN
images/freedombone2.jpg View File


+ 51
- 0
index.css View File

@@ -0,0 +1,51 @@
1
+a {
2
+    color: #427fed;
3
+    color: #1e6b8c;
4
+    text-decoration: none;
5
+}
6
+
7
+a:visited {
8
+    color: #6f32ad;
9
+
10
+}
11
+
12
+a:hover {
13
+    text-decoration: underline;
14
+    background: #f0f0ff;
15
+}
16
+
17
+a:active {
18
+    background-color: #427fed;
19
+    color: #fffff6;
20
+}
21
+
22
+body {
23
+    background-color: #fffff6;
24
+    background-image: none;
25
+    color: #330;
26
+    font-family: georgia;
27
+    font-size: 15pt;
28
+    margin: 2em auto;
29
+    padding: 0 2em;
30
+    max-width: 45em;
31
+    width: auto;
32
+}
33
+
34
+h1, h2, h3, h4, h5, h6 {
35
+    color: #703820;
36
+    line-height: 1.2em;
37
+}
38
+
39
+img {
40
+    float: right;
41
+    clear: right;
42
+    padding: 10px;
43
+    margin: 20px;
44
+    border: solid 1px #888;
45
+    box-shadow: 6px 10px 8px rgba(128, 128, 96, 0.7);
46
+}
47
+
48
+p, li, dd, dt, blockquote, span {
49
+    font-size: 15pt;
50
+    line-height: 1.4em;
51
+}