-
Notifications
You must be signed in to change notification settings - Fork 3
/
layout.css
79 lines (64 loc) · 1.5 KB
/
layout.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
body {
margin: 10px auto;
width: 960px;
font-size: medium;
background: #cfcfcf url(logoback.png) repeat-y;
}
#wrapper {
position: relative;
margin: 0px auto;
width: 960px;
-webkit-box-shadow: 2px 4px 6px 4px #333;
box-shadow: 2px 4px 6px 4px #333;
border-radius: 20px 20px 0px 0px;
-moz-border-radius: 20px 20px 20px 20px;
-webkit-border-radius: 20px 20px 20px 20px;
}
#logo {
height:220px;
width: 200px;
position: absolute;
top: 14px;
left: 8px;
background: url(logo.png) no-repeat;
}
#inner-wrapper {
display: block;
background: white;
-webkit-box-shadow: inset 0px 0px 4px 2px #cccccc;
box-shadow: inset 0px 0px 4px 2px #cccccc;
border-radius: 20px 20px 20px 20px;
-moz-border-radius: 20px 20px 20px 20px;
-webkit-border-radius: 20px 20px 20px 20px;
}
#header {
height: 150px;
margin: 0px;
display: block;
border-radius: 20px 20px 0px 0px;
-moz-border-radius: 20px 20px 0px 0px;
-webkit-border-radius: 20px 20px 0px 0px;
}
#nav {
background: url(navbar.png) repeat-x bottom;
height: 54px;
margin: 0px;
display: block;
}
#content {
margin: 0px;
padding: 40px 20px 10px 20px;
display: block;
}
#footer {
background: #efefef;
margin: 0px;
height: 120px;
display: block;
border-radius: 0px 0px 20px 20px;
-moz-border-radius: 0px 0px 20px 20px;
-webkit-border-radius: 0px 0px 20px 20px;
border-top: 5px inset #999;
-webkit-box-shadow: inset 0px 0px 8px 4px #999;
box-shadow: inset 0px 0px 8px 4px #999;
}