-
Notifications
You must be signed in to change notification settings - Fork 1
/
css.css
113 lines (102 loc) · 1.82 KB
/
css.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
a:link
{
text-decoration: none;
font-weight: bold;
color: black;
font-size: 13;
font-family: Arial;
font-weight: bold;
}
a:visited
{
text-decoration: none;
font-weight:bold;
color: black;
font-size:13;
font-family: Arial;
font-weight: bold;
}
a:hover
{
text-decoration: none;
font-weight:bold;
color: #333333;
font-size:13;
font-family: Arial;
font-weight: bold;
}
ul
{
font-family: Verdana;
font-size: 13px;
line-height: 160%;
}
p
{
font-family: Verdana;
font-size: 13px;
line-height: 140%;
}
h2
{
font-family: Verdana;
margin-top: 0px;
font-weight: bold;
font-size:16px;
margin-bottom: 0px;
}
h3
{
font-family: Verdana;
margin-top: 5px;
font-weight: bold;
font-size:16px;
margin-bottom: 5px;
}
#header
{
height: 100px;
width: 800px;
margin-top: 20px;
padding-top: 15px;
padding-bottom: 5px;
background-color: #777777;
margin-left: auto;
margin-right: auto;
-webkit-border-top-left-radius: 25px;
-webkit-border-top-right-radius: 25px;
-moz-border-radius-topleft: 25px;
-moz-border-radius-topright: 25px;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
-khtml-border-radius-topleft: 25px;
-khtml-border-radius-topright: 25px;
}
#content
{
width: 740px;
background-color: #aaaaaa;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
padding-top: 20px;
padding-bottom: 35px;
text-align: left;
margin-left: auto;
margin-right: auto;
-webkit-border-bottom-right-radius: 25px;
-webkit-border-bottom-left-radius: 25px;
-moz-border-radius-bottomright: 25px;
-moz-border-radius-bottomleft: 25px;
border-bottom-right-radius: 25px;
border-bottom-left-radius: 25px;
-khtml-border-radius-bottomleft: 25px;
-khtml-border-radius-bottomright: 25px;
}
body
{
text-align: center;
background-color: #222222;
margin: 0px;
padding: 0px;
}