-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
99 lines (89 loc) · 1.79 KB
/
style2.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
* {
margin: 0;
padding: 0;
overflow: hidden;
box-sizing: border-box;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
body {
background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
color: #ffffff;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.nevimuz {
display: flex;
width: 100%;
height: 100vh;
justify-content: center;
gap: 50px;
}
.container {
width: 100%;
height: 100vh;
text-align: center;
padding-top: 10%;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
}
.clock {
overflow: hidden;
text-transform: uppercase;
}
.header {
overflow: hidden;
height: 150px;
}
h1 {
padding-top: 10px;
}
@media (min-width: 2560px) {
.num {
font-size: 120px;
}
.text {
font-size: 50px;
}
.nevimuz {
gap: 70px;
}
}
@media (min-width: 768px) {
.num {
font-size: 100px;
}
.text {
font-size: 35px;
}
body {
padding-top: 75px;
}
h1 {
margin-bottom: 75px;
font-size: 100px;
}
}
@media (max-width: 767px) {
.num {
font-size: 50px;
}
.text {
font-size: 20px;
}
}
@media (max-width: 480px) {
.num {
font-size: 30px;
}
.text {
font-size: 15px;
}
}