-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (51 loc) · 1.14 KB
/
style.css
File metadata and controls
56 lines (51 loc) · 1.14 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
html, body {
margin: 0;
padding: 0;
}
.timer {
width: 100%;
height: 800px;
}
.letter-board-outer {
position: absolute;
bottom: 0;
width: 100%;
height: 200px;
border-top: 10px solid #00163C;
text-align: center;
background-image: -webkit-linear-gradient(left, #4675C3 0%, #0044B3 50%, #407AE1 100%);
background-image: -o-linear-gradient(left, #4675C3 0%, #0044B3 50%, #407AE1 100%);
background-image: linear-gradient(to right, #4675C3 0%, #0044B3 50%, #407AE1 100%);;
}
.letter-board {
margin: 0 auto;
width: 1100px;
margin-top: 20px;
margin-bottom: 20px;
position: relative;
height: auto;
background: #588FBC;
vertical-align: top;
border: 8px solid #00163C;
}
.letter-box {
font-weight: 700;
text-transform: uppercase;
width: 105px;
height: 110px;
font-family: sans-serif;
font-size: 5em;
vertical-align: top;
background: #034595;
text-align: center;
margin: 5px;
clear: both;
display: inline-block;
margin-top: 15px;
margin-bottom: 10px;
color: white;
}
.letter {
vertical-align: middle;
padding-top: 10px;
}