-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (52 loc) · 1.12 KB
/
styles.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
a { text-decoration: none; color: white;}
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:focus { text-decoration: none; }
a:hover, a:active { text-decoration: none; }
.nav{
color: white;
background-color: black;
justify-content: space-evenly;
display: flex;
align-items: center;
font-family: 'Roboto', sans-serif;
text-decoration: none;
}
.theater-banner {
position: relative;
text-align: center;
color: white;
font-size: 100px;
font-family: 'Roboto', sans-serif;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%)
}
.show_info {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin: 20vh;
}
.all_shows {
display: flex;
flex-direction: column;
background-color: black;
}
.btn {
background-color: black;
border-radius: 5px;
border: 1px solid white;
color: white;
font-family: 'Roboto', sans-serif;
margin-left: 10vh;
}
p {
font-family: 'Roboto', sans-serif;
padding-left: 10vh;
color: white;
}