summaryrefslogtreecommitdiff
path: root/GroLUG/root/src/ttsite.css
blob: 865a4319f875ce93ff487500beebbb46def463d6 (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
 
html {
    height: 100%;
}
 
body { 
    background-color: [% site.col.page %];
    color: [% site.col.text %];
    margin: 0px;
    padding: 0px;
}
 
#header {
    background-color: [% site.col.head %];
    border-bottom: 1px solid [% site.col.line %];
    position: fixed; top: 0; left: 0;
    width: 100%;
}
#header ul {
 list-style: none;
 float: right;
 margin-right: 1em;
}
#header ul li {
 display: inline;
}
#header ul li a {
 text-decoration: none;
 color: black;
 padding: 2px;
 border: 1px dotted black;
}
#header ul li a:hover {
 color: white;
 background-color: black;
}
 
#footer {
    background-color: [% site.col.head %];
    text-align: center;
    border-top: 1px solid [% site.col.line %];
    position: fixed; bottom: 0; left: 0;
    width: 100%;
    padding: 4px;
}
 
#content {
    padding: 10px;
    padding-top: 5em;
    padding-bottom: 2em;
}
 
h1.title {
    padding: 4px;
    margin: 0px;
    float: left;
}
 
.message {
    color: [% site.col.message %];
}
 
.error,
.fields_with_errors,
.labels_with_errors,
.error_messages {
    color: [% site.col.error %];
}
 
form label {
 display: block;
}
 
form label * {
 vertical-align: top;
 margin-left: 0.5em;
}