MARKDOWN: add epic editor
[citadel.git] / webcit / epic / themes / preview / bartik.css
1 body {
2   font-family: Georgia, "Times New Roman", Times, serif;
3   line-height: 1.5;
4   font-size: 87.5%;
5   word-wrap: break-word;
6   margin: 2em;
7   padding: 0;
8   border: 0;
9   outline: 0;
10   background: #fff;
11 }
12
13 h1,
14 h2,
15 h3,
16 h4,
17 h5,
18 h6 {
19   margin: 1.0em 0 0.5em;
20   font-weight: inherit;
21 }
22
23 h1 {
24   font-size: 1.357em;
25   color: #000;
26 }
27
28 h2 {
29   font-size: 1.143em;
30 }
31
32 p {
33   margin: 0 0 1.2em;
34 }
35
36 del {
37   text-decoration: line-through;
38 }
39
40 tr:nth-child(odd) {
41   background-color: #dddddd;
42 }
43
44 img {
45   outline: 0;
46 }
47
48 code {
49   background-color: #f2f2f2;
50   background-color: rgba(40, 40, 0, 0.06);
51 }
52
53 pre {
54   background-color: #f2f2f2;
55   background-color: rgba(40, 40, 0, 0.06);
56   margin: 10px 0;
57   overflow: hidden;
58   padding: 15px;
59   white-space: pre-wrap;
60 }
61
62 pre code {
63   font-size: 100%;
64   background-color: transparent;
65 }
66
67 blockquote {
68   background: #f7f7f7;
69   border-left: 1px solid #bbb;
70   font-style: italic;
71   margin: 1.5em 10px;
72   padding: 0.5em 10px;
73 }
74
75 blockquote:before {
76   color: #bbb;
77   content: "\201C";
78   font-size: 3em;
79   line-height: 0.1em;
80   margin-right: 0.2em;
81   vertical-align: -.4em;
82 }
83
84 blockquote:after {
85   color: #bbb;
86   content: "\201D";
87   font-size: 3em;
88   line-height: 0.1em;
89   vertical-align: -.45em;
90 }
91
92 blockquote > p:first-child {
93   display: inline;
94 }
95
96 table {
97   font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
98   border: 0;
99   border-spacing: 0;
100   font-size: 0.857em;
101   margin: 10px 0;
102   width: 100%;
103 }
104
105 table table {
106   font-size: 1em;
107 }
108
109 table tr th {
110   background: #757575;
111   background: rgba(0, 0, 0, 0.51);
112   border-bottom-style: none;
113 }
114
115 table tr th,
116 table tr th a,
117 table tr th a:hover {
118   color: #FFF;
119   font-weight: bold;
120 }
121
122 table tbody tr th {
123   vertical-align: top;
124 }
125
126 tr td,
127 tr th {
128   padding: 4px 9px;
129   border: 1px solid #fff;
130   text-align: left; /* LTR */
131 }
132
133 tr:nth-child(odd) {
134   background: #e4e4e4;
135   background: rgba(0, 0, 0, 0.105);
136 }
137
138 tr,
139 tr:nth-child(even) {
140   background: #efefef;
141   background: rgba(0, 0, 0, 0.063);
142 }
143
144 a {
145   color: #0071B3;
146 }
147
148 a:hover,
149 a:focus {
150   color: #018fe2;
151 }
152
153 a:active {
154   color: #23aeff;
155 }
156
157 a:link,
158 a:visited {
159   text-decoration: none;
160 }
161
162 a:hover,
163 a:active,
164 a:focus {
165   text-decoration: underline;
166 }
167