blob: 97a7459a098d578ee1912b93507e54d579a1b830 (
plain) (
blame)
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
|
html {
position:relative
background-color: #fff;
font-family: sans-serif;
line-height: 24px;
}
body {
color: #333;
font-size: 16px;
}
h1, h2, h3 {
margin: 0px 0px 18px 0px;
padding: 24px 0px 0px 0px;
}
p, ul {
margin: 18px 0px 18px 0px;
}
img {
margin: 12px 0px 12px 0px;
max-width: 100%;
}
ul {
padding-left: 18px;
}
a {
color: #111;
text-decoration: none;
}
h1, h2, h3 {
font-weight: normal;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 22px;
}
h3 {
font-size: 18px;
}
@media screen and (min-width: 768px) {
aside {
width: 15%;
height: 100%;
position: fixed;
top:0;
left:0;
}
main {
width: 80%;
position: absolute;
top: 0;
left: 15%;
}
}
aside h1, aside h2, aside h3{
margin: 0px 0px 8px 0px;
padding: 8px 0px 0px 0px;
}
aside ul {
padding-left: 0px;
margin: 8px 0px 8px 0px;
}
aside {
background-color: #333333;
color: #ffffff;
text-align: center;
}
aside a{
color: #eeeeee;
}
aside div{
padding-bottom: 1em;
}
aside div img{
border-radius: 50%;
max-width: 120px;
}
aside div nav ul li{
display: block;
text-transform: lowercase;
margin: 2px 2px 2px 2px;
}
footer {
color:#555555;
font-size:14px;
text-align:center;
height:4em;
width:100%;
padding-top:1.2em;
font-family:sans-serif
bottom: 0;
}
footer a{
color: #111111;
font-weight: bold;
}
body div#content {
padding-left: 4%;
}
main a{
border-bottom: 1px solid #555;
}
|