-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (97 loc) · 1.57 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
.time {
text-align: center;
font-family: 'Oswald', sans-serif;
color: #2d4d76;
display: block;
}
.container-block {
margin-top: 10%;
}
h1.st1 {
display: inline-block;
width:200px;
font-size: 180px;
}
h1.st2 {
display: inline-block;
/*width:100px;*/
font-size: 180px;
}
.dropdown {
font-family: Arial, Helvetica, sans-serif;
color: #2d4d76;
text-align: center;
width: 30%;
display: block;
margin: auto;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
font-size: 15px;
margin: 20px;
}
.dark-mode {
background-color: black;
color: white;
}
@media only screen and (max-width: 992px) {
h1.st1 {
width:150px;
font-size: 130px;
}
h1.st2 {
font-size: 150px;
}
.dropdown {
width: 60%;
}
}
@media only screen and (max-width: 770px) {
h1.st1 {
width:100px;
font-size: 80px;
}
h1.st2 {
font-size: 90px;
}
#fullDate {
font-size: 30px;
}
.dropdown {
width: 80%;
}
}
@media only screen and (max-width: 415px) {
h1.st1 {
width:80px;
font-size: 70px;
}
h1.st2 {
font-size: 70px;
}
#fullDate {
font-size: 25px;
}
.dropdown {
width:80%;
}
.container-block {
margin-top: 40%;
padding: 0px;
}
}
p#info {
text-transform: uppercase;
position: absolute;
right: 0;
bottom: 0;
margin: 20px;
}
a {
color: #2d4d76;
text-decoration: none;
}