blob: 740ba7bea76782b5e37c928d4b54cdb0226f243a (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
html {
background-color: #f1f1f1;
font-family: 'Open Sans', sans-serif;
font-size: small;
}
body {
background: #f1f1f1;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
position: relative;
}
footer {
padding: 300px 10px 5px 20px;
margin-bottom: 300px;
font-size: x-small;
align-content: center;
}
#footer_banners {
display: flex;
align-items: center;
}
#headerflex {
display: flex;
}
#headers {
flex-grow: 1;
}
header nav {
flex-grow: 1;
display: inline;
}
header div {
padding-left: 20px;
padding-bottom: 20px;
}
nav ul {
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
list-style-type: none;
}
nav a {
text-decoration: none;
display: block;
padding: 5px 6px 5px 6px;
color: black;
}
#the_title {
text-decoration: none;
color: black;
}
#the_title h1 {
padding-left: 16px;
}
aside {
width: 23%;
padding-left: 15px;
margin-left: 15px;
float: right;
}
#contents {
font-size: small;
padding-bottom: 2px;
}
#contents ul {
padding-left: 17px;
line-height: 4px;
}
#contents ul li {
list-style: none;
}
#navbar {
text-align: left;
}
#wrapper {
background-color: #f1e7d5;
max-width: 964px;
min-width: 850px;
margin: auto;
margin-top: -10px;
padding: 30px;
}
#thoughts_list ul {
padding-left: 12px;
line-height: 20px;
}
#thoughts_list ul li {
list-style: none;
}
.header_linker {
font-size: x-small;
}
|