-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
154 lines (134 loc) · 3.07 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&family=Raleway:wght@300&family=Roboto+Condensed&display=swap');
* {
padding: 0;
margin: 0;
}
body {
padding: 60px 30px;
font-family: 'Poppins', sans-serif;
background: rgb(5, 1, 39);
}
.container {
display: flex;
justify-content: center;
align-items: center;
background: rgb(5, 1, 39);
padding: 60px 0 0 0;
box-sizing: border-box;
}
.wrapper-1 {
background:rgb(5, 1, 39);
color: #fff;
padding: 2rem;
}
h1 {
font-size: 50px;
font-weight: 800;
font-family: 'Roboto Condensed', sans-serif;
padding-bottom: 10px;
text-shadow: 2px 2px 3px #c72727;
}
h4 {
color: burlywood;
font-size: 15px;
font-weight: 700;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: 1px;
padding-bottom: 6px;
}
p {
font-family: 'Raleway', sans-serif;
font-size: 14px;
color: rgba(240, 207, 163, 0.527);
line-height: 1.5;
padding: 0 7em 0 0;
}
.btn {
display: inline-block;
border: 1px solid burlywood;
border-radius: 0 50px 0 50px;
padding: 4px 55px;
margin: 40px 0 30px 0
}
.btn a {
font-size: 14px;
text-decoration: none;
color: #fff;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: 1.3px;
}
.wrapper-2 {
padding: 4rem 30px 10px 0;
background:rgb(5, 1, 39);
}
.round {
height: 170px;
width: 170px;
border-radius: 50%;
background: rgb(5, 1, 39);
box-shadow: -3px -3px 7px #ffffff8c, 3px 3px 5px rgba(94, 104, 121, 0.38);
position: relative;
}
.round:after {
content: '';
position: absolute;
height: 88%;
width: 88%;
background-color: transparent;
border-radius: 50%;
box-shadow: inset -3px -3px 7px #ffffff73, inset 3px 3px 5px rgba(94, 104, 121, .288);
}
.timer:after {
content:'';
position: absolute;
top: 50%;
left: 50%;
height: 6px;
width: 35%;
border-radius: 3px;
background: burlywood;
animation: move 2s linear infinite;
transform-origin: left;
}
@keyframes move {
0% {
transform: rotate(-90deg);
}
100% {
transform: rotate(270deg);
}
}
span {
display: block;
position: absolute;
top: 52%;
left: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background: burlywood;
border-radius: 50%;
}
.clock {
color: #fff;
height: 30px;
margin-top: 40px;
padding: 8px;
text-align: center;
background: rgb(5, 1, 39);
box-shadow: -3px -3px 7px #ffffff1f, 3px 3px 5px rgba(94, 104, 121, 0.18);
position: relative;
}
@media screen and (max-width:894px) {
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.wrapper-2 {
padding: 0 0 10px -3em;
background:rgb(5, 1, 39);
align-self: center;
}
}