blob: 7e9d019691c5b9b98af6220a6535eccae61919da (
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
|
body {
font-family: sans-serif ;
background: #282828 ;
color: #fbf0c9;
}
a {
color: #fe8019;
}
main {
max-width: 800px ;
margin: auto ;
}
img {
max-width: 100% ;
}
time {
color: #c2c2c2;
font-size: 12px;
}
header h1 {
text-align: center ;
}
footer {
/* display: flex; */
/* flex-direction: row; */
/* align-items: center; */
/* align-content: center; */
text-align: center ;
clear: both ;
}
.menu-list {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.menu-item {
float: left;
margin: 0 5px;
}
.menu-item a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
border-width: 1px;
border-bottom-width: 1px;
border-color: #282828;
border-bottom-color: white;
border-style: solid;
transition-delay: 200ms;
-moz-transition: all 200ms ease-in;
-webkit-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
}
.menu-item a:hover {
background-color: #333;
border-width: 1px 1px 1px 1px;
border-color: white;
border-style: solid;
}
/* For TAGLIST.HTML */
.taglist {
text-align: center ;
clear: both ;
}
/* For NEXTPREV.HTML */
#nextprev {
/* The container for both the previous and next articles. */
}
#prevart {
float: left ;
text-align: left ;
}
#nextart {
float: right ;
text-align: right ;
}
#nextart,#prevart {
max-width: 33% ;
}
|