summaryrefslogtreecommitdiff
path: root/html/style.css
blob: 378b92abf4afa475b012c0f55e31d82fdf57cbe1 (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
117
118
119
120
121
122
123
/* All colors are at the beginning */
/* Colors are based on a "My Yahoo" theme */

body, #title, #title A:link, #title A:visited, #title a:hover
{
    color: black;
    background: #a0b8c8;
}

.box {
    color: black;
    background: #ffffcc;
}

.boxtitle {
    color: black;
    background: #dcdcdc;
}

#menu {
    color: black;
    background: #dcdcdc;
}

/* Colors finished; now for the layout */

body {
    margin-left: 10%;
    margin-right: 10%;
    font-family: sans-serif;
    font-size: 0.8em;
}

#title {
    text-align: center;
}

#title h1 {
    margin-bottom: .3em;
    padding-bottom: .2em;
    font-size: 1.8em;
    letter-spacing: .2em;
    border-bottom: 1px solid;
}

#title p {
    letter-spacing: .2em;
    margin-top: .1em;
    margin-bottom: .1em;
}

#title A:link, #title A:visited {
    text-decoration: none;
}
     
#title A:hover {
    text-decoration: underline;
}

#menu {
    margin-top: 2em;
    padding: 0.3em;
    text-align: center;
    font-weight: bold;
    border: 1px solid;
}

#footer {
    margin-top: 1em;
    padding-right: 0.2em;
    padding-left: 0.2em;
    font-style: italic;
    text-align: center;
}

#footer p {
    margin: 0.5em;
}

.box {
    margin-top: 2em;
    padding: 0em;
    border: 1px solid;
}

.boxtitle {
    margin: 0;
    padding-bottom: 0.1em;
    padding-top: 0.2em;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    border-bottom: 1px solid;
}

.boxitem {
    margin: 1em;
}

ul {
    margin-top: 0.2em;
    margin-bottom: 0;
}

li {
    margin-bottom: 0.1em;
}

.leftfloat {
    width: 50%;
    float: left;
}

.rightfloat {
    width: 50%;
    float: right;
}

.clear {
    clear: both;
    width: 0;
    height: 0;
}