-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
71 lines (61 loc) · 1.22 KB
/
Copy pathmain.css
File metadata and controls
71 lines (61 loc) · 1.22 KB
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
body {
min-width: 1200px;
margin: 0px auto;
background: #ffffff;
}
#main_body {
margin: 0px auto;
width: 70%;
}
#main_body #top_bar h1 {
font-weight: normal;
font-size: 3em;
letter-spacing: 10px;
word-spacing: 30px;
color: #777;
font-family:'Arial', 'Verdana', 'Helvetica', 'Sans-Serif';
}
#main_body hr {
margin-top: -20px;
border-style: ridge;
}
#nav_bar {
position: absolute;
top: 40px;
left: 40px;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
display: inline-block;
padding: 0;
font-size: 18px;
text-align: center;
}
ul#nav_list {
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
ul#nav_list li {
display: block;
padding: 0.5em 1em 0.5em 1em;
margin: 0;
background: #eee;
border-width: 7px;
border-color: #ddd #aaa #bbb #f1f1f1;
border-style: solid;
border-radius: 15px;
}
ul#nav_list li a {
color: #555;
text-decoration: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
ul#nav_list li:hover {
border-color: #eee #999 #aaa #fff;
background-color: #ddd;
}
ul#nav_list li:active {
background-color: #aaa;
}