-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.css
More file actions
126 lines (110 loc) · 1.46 KB
/
demo.css
File metadata and controls
126 lines (110 loc) · 1.46 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
*
{
font-family: tahoma;
}
#wrapper
{
width: 960px;
margin-left: auto;
margin-right: auto;
}
#red_nav
{
height: 73px;
background-color: #961703;
}
#red_nav h2
{
margin-top: 16px;
color: white;
display: inline-block;
}
#logo
{
display: inline-block;
width:260px;
height: 60px;
margin: 10px 5px;
background-color: orange;
float:left;
}
#search
{
float: right;
}
#search p
{
font-size: 12px;
color: white;
}
.links
{
font-size: 12px;
margin: 5px 5px;
color: yellow;
text-decoration: underline;
}
#search form
{
float: right;
margin-right: 4px;
}
#grey_nav
{
height: 35px;
background-color: silver;
}
#grey_nav ul
{
margin: 0px;
padding: 0px;
float: left;
margin-left: 20px;
}
#grey_nav ul li
{
font-size: 12px;
display: inline-block;
border-right: 2px solid gray;
padding: 5px 10px;
}
#left_nav
{
width: 160px;
height: 230px;
background-color: silver;
margin-top: 14px;
margin-left: 8px;
float: left;
}
#left_nav ul
{
display: inline-block;
margin: 0px;
padding: 4px 20px;
}
#left_nav ul li
{
list-style-type: none;
font-size: 11px;
color: #961703;
text-decoration: underline;
max-width: 140px;
margin-top: 9px;
}
#left_nav ul li:before
{
content: ">>";
color: #961703;
}
#main_content
{
padding-left: 13px;
float: left;
width: 767px;
margin-left: 10px;
}
#main_content li, p
{
font-size: 11px;
}