-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathmain.css
More file actions
82 lines (82 loc) · 1.5 KB
/
main.css
File metadata and controls
82 lines (82 loc) · 1.5 KB
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
html {
height: 100%;
background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
overflow: hidden;
}
body {
background: transparent;
color: #ffffff;
}
.bluelight {
text-shadow: 0 0 10px #3498DB,
0 0 20px #3498DB,
0 0 30px #3498DB,
0 0 40px #2980B9,
0 0 70px #2980B9,
0 0 80px #2980B9,
0 0 100px #2980B9,
0 0 150px #2980B9;
}
.clock {
overflow: hidden;
}
.col-md-12 {
overflow: hidden;
padding-bottom: 20px;
}
.top-pane {
margin-bottom: 0px;
border-radius: 5px 5px 0px 0px;
background-color: #34495E;
border: 0px;
}
.bottom-pane {
margin-top: 0px;
border-radius: 0px 0px 5px 5px;
background-color: #2C3E50;
border: 0px;
}
@media (min-width: 768px) {
.num {
font-size: 100px;
}
}
@media (max-width: 767px) {
.num {
font-size: 50px;
}
}
@media (max-width: 480px) {
.num {
font-size: 30px;
}
}
@media (min-width: 768px) {
.text {
font-size: 35px;
}
}
@media (max-width: 767px) {
.text {
font-size: 20px;
}
}
@media (max-width: 480px) {
.text {
font-size: 15px;
}
}
@media (min-width: 768px) {
body {
padding-top: 75px;
}
}
h1 {
padding-top: 10px;
}
@media (min-width: 768px) {
h1 {
margin-bottom: 75px;
font-size: 100px;
}
}