summaryrefslogtreecommitdiff
path: root/themes/gamerdonkey-theme/static/css/style.css
blob: f8dbbb4c54d4e54587343f49502eceed3d9b8a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
   background: #090909;
   color: ghostwhite;
   margin: 1em auto;
   max-width: 50em;
   padding: 0em 1em 1em 1em;
   font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
   color: snow;
   content: '~ ';
}

.entry-content h1:before,
.entry-content h2:before,
.entry-content h3:before,
.entry-content h4:before,
.entry-content h5:before,
.entry-content h6:before {
   content: '~ '
}

a {
   color: darkorange;
}

ul {
   list-style-type: "-> ";
}

header#banner {
   display: none;
}

nav {
   width: 100%;
   text-align: center;
   font-weight: bold;
}

nav#categories {
   font-weight: normal;
}

nav ul {
   list-style: none;
   padding-left: 0;
}

nav ul li {
   display: inline;
}

nav ul li::after {
   content: ' | ';
}

nav#categories ul li::after {
   content: ', ';
}

nav ul li:last-child::after,
nav#categories ul li:last-child::after,
nav#categories ul li:first-child::after {
   content: '';
}

section#content {
   border: 2px double ghostwhite;
   padding: 0em 1em 1em 1em;
}

img {
   max-width: 100%;
   height: auto;
}

footer#contentinfo {
   margin-top: 0.5em;
   font-size: 0.7em;
   text-align: center;
}

ol#post-list {
   list-style: none;
   padding-left: 0em;
}

footer.post-info {
   font-size: 0.8em;
}

@media only screen and (max-width: 900px) {
   body {
      width: 87%;
   }
}