joeni

base.css

1
body {
2
    font-family: Verdana, Futura, Arial, sans-serif;
3
}
4
5
a.btn {
6
    border-style: solid;
7
    text-transform: uppercase;
8
    border-size: 3em;
9
    border-color: blue;
10
    padding: 0.5em;
11
    text-decoration: none;
12
    color: blue;
13
    font-weight: bold;
14
}
15
a.btn:hover {
16
    background-color: blue;
17
    color: white;
18
}
19
20
dl dt {
21
    margin: 5px;
22
}
23
24
.event {
25
    padding: 5px;
26
}
27
28
.event-update {
29
    padding: 5px;
30
    background-color: yellow;
31
    color: red;
32
    border: medium dotted red;
33
}
34
.event-new {
35
    padding: 5px;
36
    background-color: white;
37
    color: black;
38
    border: medium dashed black;
39
}
40
.event-note {
41
    padding: 5px;
42
    color: purple;
43
    border: medium double purple;
44
}
45
.event-conflict {
46
    padding: 5px;
47
    background-color: red;
48
    color: white;
49
    border: medium dashed;
50
    border-color: inherit;
51
}
52
.event a {
53
    text-decoration: none;
54
    color: inherit;
55
}
56