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.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/themes/xmin/static/css/style.css b/themes/xmin/static/css/style.css new file mode 100644 index 0000000..4dc3ae4 --- /dev/null +++ b/themes/xmin/static/css/style.css
@@ -0,0 +1,51 @@
1body {
2 max-width: 800px;
3 margin: auto;
4 padding: 1em;
5 line-height: 1.5em;
6}
7
8/* header and footer areas */
9.menu { padding: 0; }
10.menu li { display: inline-block; }
11.article-meta, .menu a {
12 text-decoration: none;
13 background: #eee;
14 padding: 5px;
15 border-radius: 5px;
16}
17.menu, .article-meta, footer { text-align: center; }
18.title { font-size: 1.1em; }
19footer a { text-decoration: none; }
20hr {
21 border-style: dashed;
22 color: #ddd;
23}
24
25/* code */
26pre {
27 border: 1px solid #ddd;
28 box-shadow: 5px 5px 5px #eee;
29 padding: 1em;
30 overflow-x: auto;
31}
32code { background: #f9f9f9; }
33pre code { background: none; }
34
35/* misc elements */
36img, iframe, video { max-width: 100%; }
37main { hyphens: auto; }
38blockquote {
39 background: #f9f9f9;
40 border-left: 5px solid #ccc;
41 padding: 3px 1em 3px;
42}
43
44table {
45 margin: auto;
46 border-top: 1px solid #666;
47 border-bottom: 1px solid #666;
48}
49table thead th { border-bottom: 1px solid #ddd; }
50th, td { padding: 5px; }
51thead, tfoot, tr:nth-child(even) { background: #eee; }