-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
123 lines (121 loc) · 2.17 KB
/
header.css
File metadata and controls
123 lines (121 loc) · 2.17 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
* {
margin: 0;
padding: 0;
}
body {
font-family: Arial;
margin: 0 auto;
background-color: white;
}
ul {
list-style: none;
}
a {
text-decoration: none;
}
#header {
width: 100%;
height: 70px;
position: fixed;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt;
}
#logo {
position: absolute;
top: 8px;
left: 45px;
}
.header-top {
background-image: url(bg.png);
background-repeat: repeat-x;
height: 80px;
padding: 10px 10px 0;
text-align: right;
}
#searchform {
display: flex;
justify-content: flex-end;
}
#searchform .item {
margin-left: -17px;
padding: -5px 10px;
display: flex;
}
.clearfix {
zoom: 1;
}
.clearfix:after {
clear: both;
content: ".";
display: block;
height: 1;
line-height: 0;
visibility: hidden;
margin-bottom: auto;
}
#searchform #register {
line-height: 30px;
margin: 2px;
}
#searchform #register a {
color: white;
}
#searchform .search_textbox {
border: 1px solid #F7941D;
color: #F7941D;
font-size: 11px;
height: 23px;
position: relative;
left: 24px;
width: 220px;
}
#searchform .search_button {
background-color: #FFC3A5;
height: 23px;
position: relative;
top: 1px;
}
#menu ul {
display: flex;
justify-content: flex-end;
height: 20px;
margin: 5px 0 0;
}
#menu ul li {
border-right: 1px solid #ffbc9b;
height: 10px;
padding: 0 5px;
}
#menu ul li a {
color: white;
display: block;
height: 23px;
margin-top: -5px;
padding: 1px 7px;
}
#menu ul li.cartimg {
border-right: 0 none;
margin: -5px 0 10px 10px;
padding-bottom: 0;
padding-top: 0;
position: relative;
}
#menu ul li a.menu-active {
background: none repeat scroll 0 0 #831d1d;
border: 1px solid #f9cfb6;
border-radius: 5px;
height: 15px;
}
#menu ul li a:active, #menu ul li a:hover {
background-color: white;
border-radius: 5px;
height: 15px;
color: #e0611d;
}
#flag {
margin-top: 5px;
}
#flag img:hover {
cursor: pointer;
}