-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
148 lines (126 loc) · 2.95 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
* {
box-sizing: border-box;
}
body {
background-image: url(./images/img4.jpg);
background-size: cover;
background-position: center 100%;
color: white;
min-height: 100vh;
font-family: 'Poppins', sans-serif;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
label {
display: block;
font: 3rem 'Poppins', sans-serif;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49);
margin-top: -150px;
}
input
{
margin: 2rem 0;
height: 20px;
padding: 20px;
font-family: 'Poppins', sans-serif;
font-size: 1rem;
}
.text-container {
text-align: center;
}
.text-container h1 {
font-size: 3rem;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49);
}
.text-container i {
font-size: 2rem;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49)
}
.timebox {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
border: 1px solid white;
padding: 20px 40px 20px 40px;
}
.big-text {
font-size: 6rem;
line-height: 1;
margin: 0 2rem;
}
.con {
text-align: center;
}
.con span {
font-size: 1.5rem;
}
footer {
position: fixed;
bottom: 0;
color:white;
padding: 5px 10px;
}
@media only screen and (max-width: 600px) {
label {
display: block;
font: 1.7rem 'Poppins', sans-serif;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49);
margin-top: -50px;
}
input{
font-family: 'Poppins', sans-serif;
font-size: 0.8rem;
}
.text-container h1 {
font-size: 1.7rem;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49);
}
.text-container i {
font-size: 1.7rem;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49)
}
.big-text {
font-size: 2rem;
line-height: 1;
margin: 0.5rem 3rem;
}
}
@media only screen and (max-width: 800px) {
label {
display: block;
font: 2rem 'Poppins', sans-serif;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49);
margin-top: -50px;
}
input{
font-family: 'Poppins', sans-serif;
font-size: 0.8rem;
}
.text-container h1 {
font-size: 1.7rem;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49);
}
.text-container i {
font-size: 1.7rem;
color: rgb(253, 125, 92);
text-shadow: 2px 2px 5px rgb(255, 49, 49)
}
.big-text {
font-size: 2rem;
line-height: 1;
margin: 0.5rem 3rem;
}
}