-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.css
100 lines (86 loc) · 1.34 KB
/
header.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
header{
position: sticky;
top: 0px;
z-index: 1;
background:white;
}
#Discount{
width: 100%;
height: 40px;
background-color: #e5f0da;
top: 0px;
}
#Discount>h3{
padding-top: 5px;
}
#Discount>h3>button{
width:100px;
color:white;
background-color: #475d4b;
border-radius: 5px;
border: none;
height: 25px;
}
h3{
text-align: center;
position:relative;
}
#Icons-div{
display: flex;
justify-content: space-around;
margin-top: 10px;
height: 100px;
}
#signup-icon>a>img{
margin-top: 20px;
width: 25px;
cursor: pointer;
}
#brand-icon{
display: flex;
;
}
#brand-icon>div>a>img{
width: 70px;
margin: 5px;
cursor: pointer;
}
#checkout{
display:flex;
}
#checkout>div>img{
width: 30px;
margin-top: 20px;
padding: 5px;
cursor: pointer;
}
#checkout>div>a>img{
width: 30px;
margin-top: 20px;
padding: 5px;
cursor: pointer;
}
#menu{
display: flex;
justify-content: space-around;
width: 80%;
text-align: center;
margin-left: 10%;
cursor: pointer;
color: #475d4b;
}
#menu>a{
text-decoration: none;
}
#menu>a>p{
color: #475d4b;
}
#menu>a>p:hover{
text-decoration: underline #cbd7c2;
}
hr{
width: 80%;
margin-left: 10%;
margin-top: 5px;
color: #f4f6f5;
}