forked from crusher8010/Chargebee-Website-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.css
143 lines (134 loc) · 2.68 KB
/
nav.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* ------------------------------------------------------Navbar CSS------------------------------------------------ */
#navbar{
/* border: 1px solid black; */
width: 100%;
height: 50px;
display: flex;
justify-content: space-between;
/* position: fixed;
margin-top: -150px;
background-color: white; */
}
#leftt{
/* border: 1px solid red; */
width: 80%;
display: flex;
justify-content: space-around;
}
#leftt>p{
font-weight: bold;
}
#rightt{
/* border: 1px solid red; */
width: 25%;
display: flex;
justify-content: space-around;
align-items: center;
}
#siteName{
position: relative;
bottom: 19px;
padding-right: 30px;
}
.dropdown{
display: none;
margin-left: -400px;
position: absolute;
/* border: 1px solid black; */
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
width: 99%;
height: auto;
background-color: whitesmoke;
z-index: 1;
}
.dropdown a{
text-decoration: none;
color: blue;
line-height: 30px;
}
.contain{
/* border: 1px solid red; */
height: 50px;
}
.contain:hover{
cursor: pointer;
}
.contain:hover .dropdown{
display: block;
display: flex;
gap: 50px;
cursor: auto;
}
#second_dropdown{
margin-left: -600px;
}
#third_dropdown{
margin-left: -750px;
}
/* --------LANGUAGE SELECT & "Demo" button-------------------------- */
#changeLang{
height: 30px;
width: 80px;
}
#demo_btn{
height: 35px;
width: 120px;
border: none;
background-color: orange;
border-radius: 3px;
color: white;
font-weight: bold;
}
#demo_btn:hover{
cursor: pointer;
}
/* ----------NAVBAR [UNDER "RESOURCES" DROPDOWN MENU]------------------------ */
#dropdown_left{
/* border: 1px solid black; */
height: auto;
width: 70%;
display: grid;
grid-template-columns: repeat(3,1fr);
}
#dropdown_right{
/* border: 1px solid blue; */
border-radius: 20px;
width: 30%;
height: 200px;
margin-top: 350px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
padding-left: 20px;
padding-right: 20px;
padding-top: 20px;
position: relative;
right: 50px;;
}
.boxx{
/* border: 1px solid green; */
height: 200px;
padding-left: 20px;
padding-right: 20px;
}
#book{
height: 50px;
border-radius: 10px;
position: relative;
top: 320px;
left: 80px;
z-index: 2;
}
/* Hamburger Dropdown Menu Option */
.hamburger{
display: none;
cursor: pointer;
}
.bar{
display: block;
height: 3px;
width: 25px;
margin: 5px auto;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
background-color: #333;
color: #fff;
}