-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlayout.css
More file actions
111 lines (110 loc) · 1.89 KB
/
layout.css
File metadata and controls
111 lines (110 loc) · 1.89 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
/* layout elements */
body > .container {
max-width: 740px;
margin: 0 auto;
padding: 0;
position: relative;
}
.body {
min-height: 15em;
padding: 0 5px;
}
.menu ul,
.tags ul,
.location ul {
list-style: none;
padding: 0;
}
.menu li,
.location li {
display: inline-block;
padding: 5px;
}
.tags li {
padding: 5px 0;
}
.menu ul {
float: right;
margin: 15px 0;
}
.menu i span {
display: none;
}
.menu a {
vertical-align: middle;
}
.tags {
position: relative;
}
.tags ul {
position: absolute;
left: 0;
margin: 0 0 0 -11em;
width: 10em;
box-sizing: border-box;
text-align: right;
top: 0;
}
.tags li {
border-right: 5px solid #aaa;
padding-right: 1em;
}
.location li {
border-bottom: 5px solid #fff;
}
.location .active {
border-bottom: 5px solid #CE0D27;
background: #eee;
}
.tags .active {
border-right: 5px solid #CE0D27;
background: #eee;
}
.footer p {
text-align: center;
font-style: italic;
font-size: 80%;
margin: 0;
}
.sitename {
margin: 15px;
}
@media only screen and (min-width: 0px) and (max-width: 1024px) {
.location, .tags,
.location ul, .tags ul {
margin: 1ex 0;
}
.tags ul {
position: inherit;
margin: 0;
width: auto;
padding: 0;
text-align: left;
margin-bottom: 1em;
}
.tags li {
display: inline-block;
border: none;
width: auto;
margin: 0;
padding: 5px;
}
.tags {
border-bottom: 5px solid #aaa;
}
.tags .active {
border: none;
border-bottom: 5px solid #CE0D27;
background: #eee;
}
}
@media only screen and (min-width: 0px) and (max-width: 565px) {
div.entry-overview .date {
font-size: 17px;
float: right;
width: auto;
}
div.entry-overview .sep {
display: none;
}
}