summaryrefslogtreecommitdiffstats
path: root/root/static/style.css
blob: 21fb5e3976fbd072a68e417a2f3e42d5340baf32 (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
body {
    background-color: #345;
    font-family: sans;
    margin: 0 auto;
    margin-bottom: 16px;
    width: 600px;
}

a:link {
    color: #123;
}

a:visited {
    color: #153;
}

.header {
    border-bottom: 1px solid;
    position: relative;
}

.header .name {
    float: left;
    margin-top: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.header .name h1 {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.gravatar {
    float: right;
    vertical-align: bottom;
}

.clear {
    clear: both;
}

.nav {
    text-align: center;
}

.nav ul {
    font-weight: bold;
    font-size: small;
    margin-bottom: 0px;
    padding-left: 0px;
}

.nav li {
    background-color: #8c8;
    border: 1px solid black;
    display: inline;
    padding: 2px;
    padding-bottom: 0px;
    position: relative;
    bottom: -4px;
}

.nav li a:link {
    text-decoration: none;
    color: black;
}

.nav li a:visited {
    text-decoration: none;
    color: black;
}

.nav li.active {
    background-color: #58a;
}

.main_content {
    background-color: #8c8;
    border: 1px solid;
    padding: 8px;
}

.main_content h4 {
    background-color: #58a;
    margin: 8px;
    padding: 2px;
    border: 1px solid;
}

.main_content > div {
    border-bottom: 1px dotted;
    padding-bottom: 16px;
}