-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.css
125 lines (106 loc) · 1.8 KB
/
head.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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Poppins:wght@200;300;400;500;600&display=swap");
* {
box-sizing: border-box;
font-family: "Inter", "Verdana", sans-serif;
}
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
}
.hd1 {
background-color: #011e5d;
width: 100%;
height: 17px;
}
.hd2 {
height: 45px;
width: 100%;
display: flex;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
width: 30%;
/* font-size: 13px; */
font-size: 0.7em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2.5px;
}
nav ul {
margin-left: 1%;
display: flex;
list-style: none;
}
nav ul li {
margin-right: 5%;
}
nav ul li a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #395ba5;
}
.hd2n {
width: 55%;
height: 48px;
display: flex;
flex-direction: column;
background-color: #b1d1f2;
overflow: hidden;
}
.hdn1 {
width: 100%;
height: 14.07px;
background-color: #6eade0;
}
.hdn2 {
display: flex;
align-items: center;
flex-grow: 1;
}
.hdn2 div{
margin-left: 3%;
font-style: italic;
color: #0000007e;
}
.hdn2 span{
font-style: normal;
background-color: #b1d1f2;
color: #000000;
}
.hd2menu {
width: 15%;
background-image: url("./images/bannerMumbai-PhotoRoom.jpg");
background-size: 100% 150%;
background-repeat: no-repeat;
background-position: center;
display: grid;
place-items: center;
}
.hd2menu img {
width: 40%;
}
header {
box-shadow: 0 8px 6px -8px #0000004b;
position: fixed;
z-index: 999;
width: 100%;
background-color: white;
}
@media screen and (max-width: 768px) {
.hd2n {
display: none;
}
.hd2menu {
display: none;
}
nav {
font-size: 2.5vw;
}
}