-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
107 lines (94 loc) · 1.57 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
body{
width: 1024px;
margin: auto;
font-family:Arial;
}
div#header{
background-color: lightgrey;
height: 120px;
}
div#footer{
background-color: lightgrey;
text-align: center;
}
#nav
{
padding:0;
width: 1024px;
}
#nav li
{
display:inline;
width: 204.8px;
}
#nav li a
{
text-align: center;
width: 184.5px;
font-size:12px;
text-decoration: none;
float:left;
padding:10px;
background-color: #333333;
color:#ffffff;
border-bottom:1px;
border-bottom-color:#000000;
border-bottom-style:solid;
}
#nav li a:hover
{
background-color:#9B1C26;
padding-bottom:12px;
border-bottom:2px;
border-bottom-color:#000000;
border-bottom-style:solid;
margin:-1px;
}
div#content{
height: 350px;
width: 1024px;
background-color: grey;
}
div#cl{
position: absolute;
height:350px;
background-color: grey;
width: 256px;
}
div#cm{
position: absolute;
margin-left: 256px;
height:350px;
background-color: whitesmoke;
width: 512px;
}
div#cr{
float: right;
height:350px;
background-color: grey;
width: 256px;
}
#cr a
{
text-align: center;
width: 184.5px;
font-size:16px;
text-decoration: none;
float:left;
padding:10px;
background-color: #333333;
color:#ffffff;
border-bottom:1px;
border-bottom-color:#000000;
border-bottom-style:solid;
}
#cr a:hover
{
font-size: 18px;
background-color:#9B1C26;
padding-bottom:12px;
border-bottom:2px;
border-bottom-color:#000000;
border-bottom-style:solid;
margin:-1px;
}