-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
124 lines (102 loc) · 1.52 KB
/
site.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
body {
background-color: black;
color: white;
font-family: 'Nova Mono', monospace;
/*font-family: 'Muli', sans-serif;*/
font-size: 16px;
}
h1,h2,h3,h4 {
text-align: center;
}
#title {
text-align: center;
padding: 30px;
background-image: url('images/bg.jpg');
background-repeat: no-repeat;
background-size: cover;
}
#title h1 {
font-size: 50px;
margin: 20px;
color: #28f5b3;
}
#title img {
height: 200px;
}
#title #location {
margin-top: 0px;
font-style: italic;
}
.container {
padding: 20px;
}
a {
color: white;
}
#signup {
margin-top: 50px;
text-align: center;
}
#signup input {
padding: 5px;
width: 220px;
font-size: 16px;
margin-top: 10px;
}
#signup input[type="submit"]{
background-color: #28f5b3;
color: #242424;
width: 100px;
cursor: pointer;
}
.info {
margin: 20px auto;
padding: 10px 30px;
color: black;
background-color: white;
border-radius: 20px;
max-width: 800px;
/*width: 100%;*/
}
#how {
margin: auto;
text-align: center;
}
#how h3 {
color: #28f5b3;
}
#how .step {
width: 200px;
display: inline-block;
margin: 20px;
text-align: left;
}
footer {
margin: 60px 0;
text-align: center;
font-size: 14px;
}
/* buy */
#buy-box div{
margin: 10px;
text-align: center;
}
#buy-box a{
color: #242424;
}
#tickets-num {
width: 30px;
}
#checkout-button{
width: 140px;
color: white;
cursor: pointer;
padding: 5px;
font-size: 16px;
background-color: #28f5b3;
color: #242424;
}
.mid-small {
max-width: 700px;
margin: auto;
}