-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
163 lines (147 loc) · 2.62 KB
/
style.css
File metadata and controls
163 lines (147 loc) · 2.62 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
*{
margin:0;
padding:0;
box-sizing: border-box;
}
.hamburger{
display: inline-block;
cursor: pointer;
background-color:black;
}
.bar1, .bar2, .bar3 {
width: 30px;
height: 5px;
background-color: rgb(255, 255, 255);
margin: 6px 0;
transition: 0.4s;
}
.change .bar1 {
transform: rotate(-45deg) translate(-9px, 6px);
}
.change .bar2 {
opacity: 0;
}
.change .bar3 {
transform: rotate(45deg) translate(-8px, -8px);
}
.navbar{
background-color: black;
list-style-type: none;
}
.navbar ul{
overflow: auto;
margin-left: 30px;
}
.navbar li{
float: left;
list-style:none;
margin: 20px 0px 8px 10px ;
}
.navbar li a{
padding:15px 0px 10px 5px;
text-decoration: none;
color: white;
font-size: 20px;
font-family: "Nunito",sans-serif;
margin-left: 10px;
}
.navbar .fa{
margin-left: 10px;
margin-right: 10px;
}
.search{
float: left;
color: white;
padding: 20px;
}
#Searchbox{
padding-left: 20px;
width:500px;
height: 35px;
font-size: 18px;
font-family: "Nunito",sans-serif;
color: #fff;;
}
#bor{
background-color: #ffb900;
height: 35px;
width:50px;
float: right;
margin-top: 1px;
}
.snav{
float: left;
height:70px;
padding:20px;
}
.sub-menu{
display: none;
}
.navbar ul li.active .sub-menu{
display: block;
position: absolute;
background-color: rgb(255, 255, 255);
margin-top: 22px;
margin-left:0px;
z-index:1;
}
.navbar ul .active .sub-menu ul{
display: block;
margin: 0px 10px 0px 10px;
width:330px;
height: 600px;
z-index:1;
}
.navbar ul .active .sub-menu li a{
color: black;
z-index:1;
font-size: 17px;
}
.fa-angle-right{
float: right;
color: #666;
}
h1{
padding: 10px 20px;
font-size: 16px;
color: black;
font-family: "Nunito",sans-serif;
font-weight: 700;
}
.navbar ul li:hover .sub-menu li a:hover{
color: teal;
}
.category{
display: none;
}
.hoverme{
width:300px;
/* border:2px solid red; */
}
.hoverme:hover{
background-color: rgb(236, 253, 253);
}
.hoverme:hover a{
color: rgb(6, 53, 53);
}
.hoverme:hover .category{
display:block;
position: absolute;
background-color: rgb(255, 255, 255);
margin-left: 340px;
top:0;
left:0;
}
.hoverme:hover .category li a{
color: black;
}
.category ul {
width:100%;
font-size: 16px;
}
.category li {
width:90%;
}
.cross,.fa-times{
float: right;
}