-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (95 loc) · 1.3 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
*
{
margin:0;
padding:0;
overflow: hidden;
}
video {display: none;}
.header
{
//background: rgba(0,0,100,0.4);
height:100vh;
}
.video-background
{
position:absolute;
right:0;
bottom:0;
min-width:100%;
min-height:100%;
width:auto;
height:auto;
z-index: -1;
}
@media(min-aspect-ratio:16/9)
{
.video-background
{
width:100%;
height:auto;
}
}
@media(max-aspect-ratio:16/9)
{
.video-background
{
width:auto;
height:100%;
}
}
.clockbox
{
position:relative;
text-align: center;
font-family: 'Roboto', sans-serif;
color: #FFF;
top: 150px;
}
.clockbox h1
{
font-size:50px;
font-weight: 100;
letter-spacing: 5px;
margin-bottom:30px;
}
.clockbox hr
{
width:50%;
margin: auto ;
height: 15px;
border: 0;
border-top: 5px solid #FFF;
padding: 0;
}
.clock {
font-family: 'Roboto', sans-serif;
color: #FFF;
font-size: 30px;
letter-spacing: 7px;
padding-bottom: 20px;
}
#dimScreen
{
position:fixed;
padding:0;
margin:0;
top:0;
left:0;
width: 100%;
height: 100%;
background:#000;
}
#startbutton
{
border:none;
position:relative;
height:60%;
width:100%;
margin:auto;
text-align: center;
font-family: 'Roboto', sans-serif;
font-size: 30px;
color: #FFF;
background-color: #000;
top: 150px;
}