about summary refs log tree commit diff
path: root/css/base.css
blob: 697a33ded486981a78e6397449a7d16dbc9e8850 (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
114
115
116
117
118
119
120
body, html {
    width: 100%;
    height: 100%;
}
html {
 min-height:100%;
 position:relative
    background-color: #fff;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 24px;
}
body {
 color: #333;
 font-size:16px;
 margin:0px;
 padding: 0;
}
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;
}

footer {
 color:#999999;
 font-size:12px;
 text-align:center;
 height:4em;
 width:100%;
 padding-top:1.2em;
 font-family:sans-serif
 bottom: 0;
}
footer a{
    color: #111111;
    font-weight: bold;
}
div#content {
    padding-left: 4%;
}
main a{
    border-bottom: 1px solid #555;
}