-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (63 loc) · 1.31 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
body {
background-image: url("attr/images/backgroundHTML.jpg");
background-repeat: no-repeat;
background-position: bottom;
background-size: contain;
background-color: black;
}
#head-img {
height: 90%;
}
.subnav-hero-section {
text-align: center;
background: black;
background-size: cover;
position: relative;
overflow: visible;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
height: 300px;
}
.subnav-hero-section .subnav-hero-headline {
color: #fefefe;
}
.subnav-hero-subnav {
float: none;
position: absolute;
text-align: center;
margin: 0 auto;
bottom: 0;
width: 100%;
}
.subnav-hero-subnav li {
float: none;
display: inline-block;
}
.subnav-hero-subnav li a {
padding: 0.9rem 1rem;
font-size: 0.75rem;
color: #fefefe;
text-transform: uppercase;
display: block;
font-weight: bold;
letter-spacing: 1px;
transition: all 0.35s ease-in-out;
}
.subnav-hero-subnav li a.is-active {
background: rgba(254, 254, 254, 0.15);
}
.subnav-hero-subnav li a:hover {
background: rgba(254, 254, 254, 0.15);
}
#highScoreSubmitButton {
background-color: #5bb853;
padding: 10px;
border-radius: 4px;
}