-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallary.css
240 lines (225 loc) · 3.78 KB
/
gallary.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@800&display=swap');
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
/* header */
.hr-orange{
background-color: orangered;
height: 40px;
border: 0px;
}
.hr-cyan{
height: 30px;
border: 0px;
background-color: #ecf4f4;
}
.head{
display: flex;
align-items: center;
padding: 20px 20px;
justify-content: center;
}
.head-text{
margin: 20px;
width: 37%;
}
.head-img img{
width: 110px;
}
.head-img2 img{
width: 130px;
}
.blue-p{
color: #08387F;
font-weight: 600;
font-family: 'Hind', sans-serif;
font-size: 0.8rem;
}
.voilet-p{
color: #4F107A;
font-family: 'Hind', sans-serif;
font-weight: 800;
text-align: justify;
font-size: 0.7rem;
margin:7px 0px 0px 0px;
}
.head-text h1{
font-family: 'Inknut Antiqua', serif;
color: #FF0101;
font-size: 2rem;
line-height: 2.9rem;
}
.head-img2{
margin: 40px 0px 0px 0px;
display: flex;
flex-direction: column;
align-items: center;
}
.red-p{
color: #FF0101;
font-family: 'Hind', sans-serif;
font-weight: 900;
font-size: 0.7rem;
}
/* Navbar */
.navbar{
background-color: #22314E;
display: flex;
justify-content: center;
padding: 20px 0px;
}
.list{
display: flex;
align-items: center;
}
.list a{
text-decoration: none;
color: white;
font-size: 1.2rem;
font-weight: 500;
margin: 0px 20px;
padding: 10px 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
li a:hover{
background-color: white;
color: #22314E;
}
.list li{
list-style-type: none;
}
.btn-gallary{
background-color: black;
}
main{
padding: 100px 300px;
}
.container-1{
width: 100%;
}
.img-1 img{
width: 100%;
margin: 5px;
}
.img-2 {
display: flex;
}
.img-2 img{
width: 49%;
margin: 5px;
}
.img-3 img{
width:100%;
margin: 5px;
}
.img-4{
display: flex;
}
.img-4 img{
width: 49%;
margin: 5px;
}
/* footer */
footer{
display: flex;
align-items: flex-end;
width: 100%;
height: 100%;
}
.foot-1{
width: 100%;
}
.foot{
background-color: #08387F;
padding: 90px 300px;
color: white;
width: 100%;
}
.foot ul{
display: flex;
margin: 0px 0px 25px 0px;
}
.foot ul li{
list-style-type: none;
margin: 0px 30px 0px 0px;
cursor: pointer;
}
.foot ul li a{
text-decoration: none;
color: white;
}
.foot ul li a{
background-color: transparent;
}
.foot p a{
color: white;
text-decoration: none;
}
.foot h1{
margin: 0px 0px 25px 0px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.foot p{
margin: 0px 0px 25px 0px;
}
.foot p i{
margin: 0px 20px 0px 0px;
cursor: pointer;
}
.foot-1{
background-color: skyblue;
height: 69vh;
}
@media only screen and (max-width:1100px)
{
.head{
flex-direction: column;
align-items: center;
justify-content: center;
}
.head-img{
width: 100%;
align-items: center;
}
.head-img img{
display: block;
margin-left: auto;
margin-right: auto;
}
.head-img2{
width: 100%;
}
.head-text{
width: 90%;
}
main{
padding: 100px 5%;
}
.head{
text-align: center;
}
.foot{
padding: 40px 9%;
text-align: center;
}
.foot ul{
justify-content: center;
}
.list li a{
font-size: 0.7rem;
margin: 0px 5px;
}
.foot li a{
font-size: 0.7rem;
margin: 0px 0px ;
}
.head-img2{
margin: 0;
}
.foot ul li{
margin: 0px 5px;
}
}