-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountdown.css
More file actions
156 lines (130 loc) · 2.43 KB
/
countdown.css
File metadata and controls
156 lines (130 loc) · 2.43 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
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
149
150
151
152
153
154
155
156
/*lah*/
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
body{
background-color: #2D444F;
}
p{
color: #EB5E55;
padding-left: 50px;
font-family: 'muli';
font-size: 20px;
margin-left: 100px;
margin-right: 100px;
line-height: 2px;
}
h1{
color: #ffffff;
padding-left: 50px;
font-family: 'times new roman';
font-size: 33px;
text-transform: uppercase;
text-align: center;
margin-left: 100px;
margin-right: 100px;
}
h2{
text-indent: 50px;
text-align: justify;
letter-spacing: 1px;
color: #B3C0A4;
font-size: 15px;
padding-left: 50px;
font-family: 'verdana';
margin-left: 100px;
margin-right: 100px;
}
ul {
list-style-type: none;
}
center{
color: #ffffff;
font-size: 40px;
margin-top: 30px;
/* color for the header for FRIST */
}
.sidenav {
height: 100%;
width: 0px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #2D444F;; /* the color for the backround menu*/
overflow-x: hidden;
transition: 0.5s;
padding-top: 16px;
}
.sidenav a {
padding: 30px 8px 6px 16px; /*the spacing of the buttons inside nav*/
text-decoration: none;
font-size: 23px;
font-family: 'Arial Black', Gadget, sans-serif;
color: #ffffff; /*sidenav letter color*/
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #324A5F;
/* the color for the oving over the words in the menue bar*/
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 30px;
margin-left: 50px;
margin-top: 10px
}
#main {
transition: margin-left .5s;
padding: 0px 10px; /*letters text position left */
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
body, html {
height: 100%;
margin: 0;
}
.bgimg {
background-image: url('https://upload.wikimedia.org/wikipedia/en/thumb/f/f0/FRC_Logo.svg/1200px-FRC_Logo.svg.png');
background-repeat: no-repeat;
height: 100%;
background-position: center;
background-size: contain;
position: relative;
color: white;
font-family: "Courier New", Courier, monospace;
font-size: 25px;
}
.topleft {
position: absolute;
top: 0;
left: 16px;
}
.bottomleft {
position: absolute;
bottom: 0;
left: 16px;
}
.middle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
hr {
margin: auto;
width: 40%;
}