-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.css
88 lines (78 loc) · 1.29 KB
/
base.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
body
{
color: #454344;
background: url(background.jpg) no-repeat;
font-family: "Helvetica Neue", "Helvetica", sans-serif;
}
div
{
}
div.box
{
padding: 20px;
margin: 10px;
}
div#header
{
position: absolute;
top: 0px;
height: 30px;
left: 0px;
width: 80%;
background: #ffffff;
border-radius: 6px;
box-shadow: 2px 2px 4px #888;
}
div#navigation
{
position: absolute;
top: 100px;
right: 0px;
width: 200px;
}
div#content
{
position: absolute;
top: 100px;
left: 0px;
right: 200px;
bottom: 0px;
}
.navbox
{
position: relative;
float: left;
}
ul.nav
{
list-style: none;
display: block;
width: 200px;
position: relative;
padding: 60px 0 60px 0;
background: url(shad2.png) no-repeat;
background-size: 50% 100%;
}
li
{
margin: 5px 0 0 0;
}
ul.nav li a
{
transition: all 0.3s ease-out;
background: #cbcbcb url(border.png) no-repeat;
color: #174867;
padding: 7px 15px 7px 15px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
width: 90px;
display: block;
text-decoration: none;
box-shadow: 2px 2px 4px #888;
}
ul.nav li a:hover
{
background: #ebebeb url(border.png) no-repeat;
color: #67a5cd;
padding: 7px 15px 7px 20px;
}