-
Notifications
You must be signed in to change notification settings - Fork 0
/
theater.css
127 lines (117 loc) · 1.84 KB
/
theater.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
121
122
123
124
125
126
127
body{
font-family: Roboto;
color: black;
}
.grid {
display:grid;
grid-template: 100px 690px 1fr 300px / repeat(5, 1fr);
}
nav {
display: grid;
grid-column: 1 / 6;
background-color:black;
text-align: center;
}
ul {
list-style-type: none;
color: white;
overflow: hidden;
display: inline;
}
.title {
display: inline;
float: left;
}
li {
display: inline;
}
li a {
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.theater-image {
position: relative;
text-align: center;
color: white;
background-color: black;
grid-column: 1 / 6;
grid-row: 2 / 3;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 100px;
}
.show-times{
margin-top: 150px;
position: relative;
grid-column: 2 / 5;
grid-row: 3 / 3;
}
.play{
display: grid;
margin-left: auto;
margin-right: auto;
}
.article-text {
color: black;
display: grid;
}
.info{
text-align: center;
margin-right: 35px;
}
button {
border: 1px solid black;
color: white;
background-color: rgb(231, 193, 24);
padding: 15px 32px;
font-size: 16px;
cursor: pointer;
width: 15%;
display: grid;
margin-left: auto;
margin-right: auto;
}
footer {
background-color: black;
grid-row: 4 / 6 ;
grid-column: 1 / 6;
color: white;
}
footer ul {
list-style-type: none;
}
.map {
width: 21%;
padding-top: 10px;
padding-left: 10px;
float: left;
}
#foot {
color: white;
display: grid;
float: left;
}
.bottom{
text-align: left;
}
.foot2 {
color: white;
display: grid;
float: left;
}
.bottom2{
text-align: left;
}
.foot3 {
color: white;
display: grid;
}
.bottom3 {
text-align: left;
}