blob: b882bfe63ad3258ec25d9e651d1af6c1bee5f737 (
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
|
body {
font-size: 16px;
font-family: cantarell, helvetica, sans-serif;
text-shadow: rgba(0,0,0,.01) 0 0 1px; /* this is definitely not a webkit-specific hack to fix font aliasing */
background-color: #121212;
color: #ffffff;
min-width: 800px;
margin: 0;
padding: 6px;
}
form {
display: inline;
}
a:link, a:visited, a:active {
text-decoration: underline;
color: #FFFFCC;
transition:color .4s ease-out;
-webkit-transition:color .4s ease-out;
-o-transition:color .4s ease-out;
-moz-transition:color .4s ease-out;
}
a:hover {
color: #EEDDBB;
text-decoration: none;
transition:color 0s ease-out;
-webkit-transition:color 0s ease-out;
-o-transition:color 0s ease-out;
-moz-transition:color 0s ease-out;
}
.col1 {
float: left;
width: 25%;
min-width: 300px;
padding: 0 25px;
}
.col2 {
float: left;
width: 50%;
margin: 0 auto;
}
.float {
float:left;
}
.lfloat {
float:right;
}
.topbar {
background: #002266;
/*
background: #000044 url(../images/OverlayStart50i.png);
height:35px;
*/
width: 95%;
padding: 5px 15px;
margin: 0 auto;
}
|