-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (93 loc) · 1.66 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img {
width: 100%;
object-fit: cover;
display: block;
}
a {
text-decoration: none;
}
li {
list-style: none;
}
body {
background-color: rgb(241, 245, 248);
font-family: "Open Sans",sans-serif;
}
section {
max-width: 1170px;
width: 94%;
display: flex;
align-items: center;
justify-content: center;
gap: 36px;
margin-top: 80px;
margin-left: auto;
margin-right: auto;
}
section > * {
flex: 1;
}
.section-right {
padding: 24px;
}
.section-right .descreption h1 {
text-transform: uppercase;
font-size: 1.75rem;
margin-bottom: 8px;
color: rgb(26, 106, 162);
}
.descreption h3 {
text-transform: capitalize;
letter-spacing: 1.5px;
margin-bottom: 20px;
font-size: 16px;
max-width: 88ch;
}
.descreption p {
color: #82B3D5;
font-size: 16px;
margin-bottom: 20px;
max-width: 80ch;
}
.count-down {
display: flex;
align-items: center;
gap: 24px;
}
.count-down .sayac {
color: white;
background-color: rgb(16, 42, 66);
padding: 16px;
}
.sayac h2 {
text-align: center;
font-weight: 600;
letter-spacing: 5px;
font-size: 30px;
}
.sayac h3 {
text-transform: uppercase;
font-size: 12px;
letter-spacing: 2px;
}
.finished {
color: rgb(16, 42, 66);
font-weight: 800;
text-transform: capitalize;
}
@media (max-width: 676px) {
section {
flex-direction: column;
align-items: center;
justify-content: center;
}
.section-right {
align-items: center;
text-align: center;
}
}