about summary refs log tree commit diff stats
path: root/themes/xmin/static/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'themes/xmin/static/css/style.css')
-rw-r--r--themes/xmin/static/css/style.css31
1 files changed, 19 insertions, 12 deletions
diff --git a/themes/xmin/static/css/style.css b/themes/xmin/static/css/style.css index 4dc3ae4..76658fe 100644 --- a/themes/xmin/static/css/style.css +++ b/themes/xmin/static/css/style.css
@@ -1,33 +1,40 @@
1body { 1body {
2 max-width: 800px; 2 font-family: sans-serif;
3 line-height: 1.5em;
3 margin: auto; 4 margin: auto;
5 max-width: 800px;
4 padding: 1em; 6 padding: 1em;
5 line-height: 1.5em;
6} 7}
7 8
8/* header and footer areas */ 9/* header and footer areas */
9.menu { padding: 0; } 10nav > ul { padding: 0; }
10.menu li { display: inline-block; } 11nav > ul > li { display: inline-block; }
11.article-meta, .menu a { 12article > header, nav > ul a {
12 text-decoration: none;
13 background: #eee; 13 background: #eee;
14 padding: 5px;
15 border-radius: 5px; 14 border-radius: 5px;
15 padding: 5px;
16 text-decoration: none;
16} 17}
17.menu, .article-meta, footer { text-align: center; } 18.terms { font-size: .9em; }
19nav > ul, article > header, footer { text-align: center; }
18.title { font-size: 1.1em; } 20.title { font-size: 1.1em; }
19footer a { text-decoration: none; } 21footer a { text-decoration: none; }
20hr { 22hr {
21 border-style: dashed; 23 border-style: dashed;
22 color: #ddd; 24 color: #ddd;
23} 25}
26body > nav {
27 border-bottom: 1px solid #ddd;
28}
29body > footer {
30 border-top: 1px solid #ddd;
31}
24 32
25/* code */ 33/* code */
26pre { 34pre {
27 border: 1px solid #ddd; 35 border: 1px solid #ddd;
28 box-shadow: 5px 5px 5px #eee;
29 padding: 1em;
30 overflow-x: auto; 36 overflow-x: auto;
37 padding: 1em;
31} 38}
32code { background: #f9f9f9; } 39code { background: #f9f9f9; }
33pre code { background: none; } 40pre code { background: none; }
@@ -42,9 +49,9 @@ blockquote {
42} 49}
43 50
44table { 51table {
45 margin: auto;
46 border-top: 1px solid #666;
47 border-bottom: 1px solid #666; 52 border-bottom: 1px solid #666;
53 border-top: 1px solid #666;
54 margin: auto;
48} 55}
49table thead th { border-bottom: 1px solid #ddd; } 56table thead th { border-bottom: 1px solid #ddd; }
50th, td { padding: 5px; } 57th, td { padding: 5px; }