-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (69 loc) · 1.31 KB
/
styles.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
body {
font-family: Verdana,Arial,sans;
padding: 0px;
margin: 0px;
background-color: #EED;
}
a {
color: #66C;
text-decoration: none;
font-size: 13px;
}
a:hover {
color: #88F;
text-shadow: 0px 0px 5px blue;
}
ul {
list-style-type: none;
}
caption {
font-size: 22px;
color: #333;
font-weight: lighter;
}
p {
font-size: 14px;
color: #444;
font-weight: normal;
}
#main {
border-bottom-left-radius:20px;
border-bottom-right-radius:20px;
margin-right: 15px;
margin-left: 15px;
margin-bottom: 10px;
box-shadow: 0px 0px 6px #555;
top: 0px;
height: 100%;
padding: 10px;
background-color: white;
}
table {
border-spacing: 4px;
font-size: 12px;
margin-left: auto;
margin-right: auto;
cursor: default;
}
td {
border: 1px solid #999;
padding: 5px;
}
td:hover {
box-shadow: 0px 0px 3px #88a;
}
tr:hover {
background-color: #ddd;
}
th {
cursor: default;
border: 1px solid #999;
background-color: #ddf;
}
.warning {
color:red;
background-color:#ed9;
border:1px solid red;
border-radius:5px;
padding:10px;
}