forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.css
45 lines (41 loc) · 823 Bytes
/
footer.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
.footer__container {
width: 100%;
/* max-width: 1800px; */
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
color: var(--secondary-color);
margin: 0;
padding: 0;
}
.goog-te-combo{
background: #5074cf;
color: white;
height: 40px;
border-radius: 70px;
padding: 10px;
border: #1457ff;
backdrop-filter: blur(20px);
font-size: medium;
font-weight: 400;
}
.goog-te-combo option{
background: #9fbaff;
height: 40px;
margin-top: 5px;
font-size: medium;
color: black;
}
.footer_text{
display: flex;
flex-direction: column;
gap: 10px;
}
.footer_text a{
color: white;
/* margin-top: 10px; */
}