-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (110 loc) · 2.37 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.element{
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
min-height: 110vh;
font-family: 'Hind Siliguri', sans-serif;
}
h2{
width: 80%;
text-align: center;
}
.second__div{
display: grid;
grid-template-columns: auto auto auto auto;
/* background-color: rgb(232, 232, 232); */
margin: auto 50px;
border-radius: 10px;
padding: 20px;
}
.section{
display: flex;
align-items: center;
flex-direction: column;
justify-content: space-evenly;
background-color: whitesmoke;
margin: 20px;
padding: 3px 10px;
height: 170px;
width: 55%;
box-shadow: 11px 10px 10px -2px rgba(130,130,130,0.75);
-webkit-box-shadow: 11px 10px 10px -3px rgba(130,130,130,0.75);
-moz-box-shadow: 11px 10px 10px -3px rgba(130,130,130,0.75);
border-radius: 5px;
font-family: 'Hind Siliguri', sans-serif;
font-weight: 600;
position: relative;
border: none;
}
.globe_section{
left: 0;
bottom: 0;
outline-offset: 20px;
outline-style: solid;
outline-width: 3px;
}
.rocket_section{
outline-offset: 20px;
outline-style: solid;
outline-width: 3px;
outline-color: rgb(68, 230, 245);
}
.briefcase_section{
outline-offset: 20px;
outline-style: solid;
outline-width: 3px;
outline-color: rgb(242, 62, 167);
}
.mobile_button_section{
outline-offset: 20px;
outline-style: solid;
outline-width: 3px;
outline-color: rgb(167, 49, 246);
}
.numbers{
font-size: 30px;
color: rgb(65, 65, 65);
}
.text{
text-transform: uppercase;
font-size: 18px;
text-align: center;
font-weight: 800;
}
.icon{
height: 30px;
width: 30px;
font-size: 28px;
text-align: center;
}
.globe_section, .globe_icon, .globe_text{
color: rgb(233, 104, 57);
}
.rocket_section, .rocket_icon, .rocket_text{
color: rgb(68, 230, 245);
}
.briefcase_section, .briefcase_icon, .briefcase_text{
color: rgb(242, 62, 167);
}
.mobile_button_section, .mobile_button_icon, .mobile_button_text{
color: rgb(167, 49, 246);
}
/* Media Queries */
@media (max-width: 768px){
.second__div{
display: grid;
grid-template-columns: auto auto;
}
}
@media (max-width: 480px){
.second__div{
display: grid;
grid-template-columns: auto;
}
}