-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
80 lines (69 loc) · 1.09 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
body {
margin-top: 0px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-left: auto;
margin-right: auto;
background-color: #e6e4d9;
background-image: url('images/pattern.png');
}
#mainheader {
background-color: #a593c2;
}
nav {
height: 60px;
width: 1000px;
margin: 0 auto 20px;
}
#leftmenu {
float: left;
width: 30%;
margin-bottom: 20px;
}
.searchbox {
padding: 5px;
margin: 10px 10px;
width: 200px;
}
#main {
float: right;
width: 70%;
margin-bottom: 20px;
}
footer {
clear: both;
width: 100%;
}
/* for compat with older browsers that don't understand html 5 semantic elements */
header,
section,
footer,
aside,
nav,
main,
article,
figure {
display: block;
}
table,
td,
th {
border: 1px solid black;
border-collapse: collapse;
padding: 5px;
}
nav>ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav>ul>li {
float:left;
}
nav>ul>li a {
display: block;
color: white;
text-align: center;
padding: 16px;
text-decoration: none;
font-weight: bold;
}