-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
55 lines (43 loc) · 763 Bytes
/
main.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
body{
font-family: Arial, Helvetica, sans-serif;
background-color: aliceblue;
}
#wrapper{
max-width: 1028px;
margin: 0 auto;
background-color: white;
}
header{
background-color: green;
height: 100px;
padding: 4px;
}
header h1{
text-transform: uppercase;
text-align: center;
color: red;
line-height: 50px;
}
.main_menu{
padding: 5px 0 5px 0;
text-align: center;
line-height: 32px;
background-color: #818181;
}
ul.main_menu{
margin-top: 0px;
}
.main_menu li{
display: inline;
padding: 0 10px 0 10 px;
font-size: 16px;
}
.main_menu a{
text-decoration: none;
color: white;
padding: 8px;
font-variant: small-caps;
}
.main_menu a:hover{
color: #564575;
}