-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (85 loc) · 1.53 KB
/
style.css
File metadata and controls
101 lines (85 loc) · 1.53 KB
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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
/* Flex Container */
body {
font-family: "Roboto", sans-serif;
/* background: #481380; */
background: lightskyblue
url("https://i.pinimg.com/originals/3c/24/46/3c24462450c2a902bf7e18f3d9aada81.jpg");
color: rgb(141, 126, 126);
display: flex;
flex-direction: column;
justify-content: flex-end;
height: 100vh;
}
.container {
max-width: 1100px;
margin: 0 auto;
overflow: auto;
}
header {
flex: 1;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
header h1 {
font-size: 60px;
}
span {
opacity: 0.5;
transition: all 0.3s ease;
}
span.fade {
opacity: 1;
color: #cde7a2;
}
.counters {
background: #091974;
color: #fff;
padding: 40px 20px;
border-top: 3px solid mediumslateblue;
}
.counters .container {
display: grid;
grid-gap: 30px;
grid-template-columns: repeat(4, 1fr);
text-align: center;
}
.fa-youtube {
color: rgb(226, 11, 83);
margin-bottom: 5px;
}
.fa-twitter {
color: rgb(55, 152, 216);
margin-bottom: 5px;
}
.fa-facebook {
color: blue;
margin-bottom: 5px;
}
.fa-linkedin {
color: rgb(38, 175, 221);
margin-bottom: 5px;
}
.counters .counter {
font-size: 45px;
margin: 10px 0;
}
@media (max-width: 700px) {
.counters .container {
grid-template-columns: repeat(2, 1fr);
}
.counters .container > div:nth-of-type(1),
.counters .container > div:nth-of-type(2) {
border-bottom: 1px solid lightskyblue;
padding-bottom: 20px;
}
header h1 {
font-size: 40px;
}
}