forked from bedirhan/wivet
-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
121 lines (99 loc) · 1.79 KB
/
style.css
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
/* CSS Document */
body{
margin: 0px;
padding: 0px;
font-family: Verdana, Tahoma, Sans Serif;
font-size: 10pt;
background-color: #FFFFE0;
}
body.body{
background-color: #FFFFE0;
padding-top: 20px;
}
body.menu{
background-color: #F0E68C;
}
body.header{
background-color: #E6E6FA;
}
a{
color: #5F9EA0;
text-decoration: none;
}
a:hover{
color: #008B8B;
text-decoration: underline;
}
input{
border: 1px solid black;
}
input.button{
width: 70px;
}
/************ HEADER CSS ***************/
h3.headerwelcome{
padding: 10px 0px 0px 10px;
margin-bottom: 0px;
}
span.about{
padding: 8px 0px 0px 10px;
font-size: 10pt;
}
span.version{
padding-left: 5px;
font-size: 9pt;
font-weight: normal;
}
/************ HEADER CSS F ***************/
/************ MENU CSS ***************/
div.menulinks{
margin-left: 10px;
margin-top: 20px;
}
div.menulink{
margin-top: 5px;
}
/************ MENU CSS F ***************/
/************ CURRENT/STATISTICS CSS ***************/
table.list{
width: 95%;
background-color: #fafafa;
border: 1px #000000 solid;
border-collapse: collapse;
border-spacing: 0px;
}
table.list th{
background-color: #99CCCC;
border: 1px #000000 solid;
font-family: Verdana;
font-weight: bold;
font-size: 12px;
color: #404040;
}
table.list td{
border-bottom: 1px #6699CC dotted;
text-align: left;
font-family: Verdana, sans-serif, Arial;
font-weight: normal;
font-size: .7em;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 0px;
}
table.list tr.even td{
background-color: #fafafa;
color: #404040;
}
table.list tr.odd td{
background-color: #dfdfdf;
color: #404040;
}
table.list tr.miss td{
background-color: #a139f4;
color: #ffffff;
}
span.explanation{
font-size: 8pt;
}
/************ CURRENT/STATISTICS CSS F ***************/