-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (116 loc) · 1.46 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
body
{
background-color: #F0F0F0;
}
.page
{
position:absolute;
top:0px;
bottom:0px;
right:0px;
left:0px;
overflow:hidden;
z-index: 2;
}
#header
{
background-color:#FFFFFF;
height:auto;
position:relative;
top:0px;
left:0px;
right:0px;
}
#header_name
{
color: #FFFFFF;
display:inline-block;
padding-left:15px;
}
#header_navagation
{
background:#000000;
padding:8px;
padding-right:10px;
float:right;
display:inline;
}
div#dropdown
{
background:#000000;
width: 100%;
}
#header_navagation ul
{
font-family: Arial, Verdana;
font-size: 18px;
margin: 0;
padding: 0;
list-style: none;
}
#header_navagation ul li
{
background:#000000;
position: relative;
float: left;
margin-left: 4px;
}
#header_navagation li ul
{
display: none;
}
#header_navagation ul li a
{
display: block;
text-decoration: none;
color: #ffffff;
margin-left: 5px;
white-space: nowrap;
}
#header_navagation ul li a:hover
{
border-bottom: 1px solid #F00000;
}
#header_navagation li:hover ul
{
display: block;
position: absolute;
}
#header_navagation li:hover li
{
font-size: 18px;
}
#header_navagation li:hover li a:hover
{
background: #000000;
position: relative;
}
#sidebar
{
float:right;
width:30%;
height:auto;
overflow:hidden;
}
#sidebar p
{
word-wrap:break-word;
}
#content
{
float:left;
color:#000000;
width:65%;
}
#content a
{
color:#000000;
}
#line
{
border-bottom:1px solid #A9A9A9;
}
h2#content_import
{
padding-left:15px;
}