-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (80 loc) · 1.32 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
#wrapper {
width: 960px;
margin: 0 auto;
}
#main_content {
position: relative;
float: left;
background: #f0f0f0;
margin: 10px 5px 5px 0;
width: 738px;
height: 630px;
border-radius: 6px;
padding: 6px 6px 6px 6px;
}
#header {
float: left;
background: #f1f1f1;
margin: 10px 0 0 0;
width: 100%;
height: 150px;
border-radius: 6px;
}
#footer {
float: left;
background: #f1f1f1;
margin: 5px 0 0 0;
width: 960px;
height: 75px;
border-radius: 6px;
}
#sidebar {
position: relative;
float: right;
margin: 10px 0px 5px 0px;
top: 0px;
background: #ccc;
width:188px;
height: 630px;
border-radius: 6px;
padding: 6px 6px 6px 6px;
}
#logo {
background: url('johnlogo_PNG.png') no-repeat;
background-size: contain;
float: left;
width: 150px;
height: 150px;
border-radius: 6px;
}
.navigation {
float: left;
margin: 30px 0px 0px 0px;
width: 760px;
border-right: 1px solid #333;
}
.navigation li {
float: left;
list-style: none;
border-left: 1px solid #333;
}
.navigation li a {
float: right;
color: #333;
padding: 6px 66px;
text-decoration: none;
/* border-right: 1px solid #333;*/
font-size: 16px;
font-family: 'Nothing+You+Could+Do', cursive;
}
.navigation li a:hover {
background-color: #333;
color: #fff;
}
/*#footer {
clear: both;
float: left;
background: #ddd;
width: 100%;
height: 100px;
}*/