Browse code

add the editor and the posts part

Dario Rodriguez authored on 26/06/2014 22:41:33
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,125 @@
1
+html {
2
+  background: transparent;
3
+}
4
+
5
+body {
6
+  margin-bottom: 25px;
7
+}
8
+
9
+h1, h2 {
10
+  line-height: 1;
11
+  font-family: Rockwell, "Courier New", Courier, Georgia;
12
+  border-bottom: 1px solid #999;
13
+  font-weight: bold;
14
+  margin: 0 5px 25px 0;
15
+  padding: 0 0 8px;
16
+}
17
+
18
+h1 {
19
+  font-size: 27px;
20
+}
21
+
22
+h2 {
23
+  font-size: 18px;
24
+}
25
+
26
+p, li {
27
+  line-height: 1.5;
28
+}
29
+
30
+p, ul, ol {
31
+  padding-bottom: 25px;
32
+}
33
+
34
+a {
35
+  color: inherit;
36
+}
37
+
38
+strong, b {
39
+  font-weight: bold;
40
+}
41
+
42
+i, em {
43
+  font-style: italic;
44
+}
45
+
46
+li {
47
+  margin-left: 30px;
48
+}
49
+
50
+ul li {
51
+  list-style: disc outside;
52
+}
53
+
54
+ol li {
55
+  list-style: decimal outside;
56
+}
57
+
58
+li img {
59
+  vertical-align: middle;
60
+  margin: 2px 5px 5px 0;
61
+}
62
+
63
+.wysiwyg-color-black {
64
+  color: black;
65
+}
66
+
67
+.wysiwyg-color-silver {
68
+  color: silver;
69
+}
70
+
71
+.wysiwyg-color-gray {
72
+  color: gray;
73
+}
74
+
75
+.wysiwyg-color-white {
76
+  color: white;
77
+}
78
+
79
+.wysiwyg-color-maroon {
80
+  color: maroon;
81
+}
82
+
83
+.wysiwyg-color-red {
84
+  color: red;
85
+}
86
+
87
+.wysiwyg-color-purple {
88
+  color: purple;
89
+}
90
+
91
+.wysiwyg-color-fuchsia {
92
+  color: fuchsia;
93
+}
94
+
95
+.wysiwyg-color-green {
96
+  color: green;
97
+}
98
+
99
+.wysiwyg-color-lime {
100
+  color: lime;
101
+}
102
+
103
+.wysiwyg-color-olive {
104
+  color: olive;
105
+}
106
+
107
+.wysiwyg-color-yellow {
108
+  color: yellow;
109
+}
110
+
111
+.wysiwyg-color-navy {
112
+  color: navy;
113
+}
114
+
115
+.wysiwyg-color-blue {
116
+  color: blue;
117
+}
118
+
119
+.wysiwyg-color-teal {
120
+  color: teal;
121
+}
122
+
123
+.wysiwyg-color-aqua {
124
+  color: aqua;
125
+}
0 126
\ No newline at end of file