-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.css
115 lines (99 loc) · 1.86 KB
/
test.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
.map{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.map > .map-container > iframe{
width: 1000px;
height: 60vh;
border-radius: 20px;
}
footer{
width: 100%;
height: 100vh;
background-color: #113;
display: flex;
flex-direction: column;
}
footer > .sec-1{
flex-basis: 40%;
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 100px;
}
footer > .sec-1 > .call > p{
margin-bottom: 10px;
color: white;
}
footer > .sec-1 > .call > h1{
color: #67e;
}
footer > .sec-1 > .visit{
display: flex;
flex-direction: column;
color: white;
}
footer > .sec-1 > .visit > span{
margin-bottom: 10px;
}
footer > .sec1 > .social-icon{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: antiquewhite
}
.icons{
text-decoration: none;
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #67e;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-right: 10px;
}
.bx{
font-size: 24px;
margin: 2px;
color: white;
}
footer > .sec-2{
flex-basis: 60%;
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 100px;
}
.about{
flex-basis: 33%;
color: white;
}
.about > h3{
margin-bottom: 10px;
}
.company, .Themes, .support{
color: white;
}
.company > h3, .Themes > h3,.support > h3{
margin-bottom: 10px;
}
.company > ul, .Themes > ul, .support > ul{
list-style: none;
}
.company > ul > li > a , .Themes > ul > li > a,.support > ul > li > a{
text-decoration: none;
color: white;
}