-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
91 lines (75 loc) · 1.13 KB
/
index.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
body {
background-color: #ebebeb;
}
.heading {
background-color: #333333;
margin-bottom: 20px;
padding: 5px 0px 5px 15px;
}
.name {
background-color: #333333;
padding: 5px;
color: white;
}
#runtime {
background-color: #333333;
color: #3e8fde;
padding: 0px 0px 5px 5px;
}
.content {
color: #3e8fde;
}
#subtitle {
color: white;
margin-left: 55px;
}
#showing {
margin-left: 20px;
}
.cart-item-message {
font-size: 16px;
}
.sold-out {
color: lightgray;
}
img {
max-width: 25vw;
}
#description {
padding-bottom: 15px;
}
#form-container{
text-align: center;
}
form {
margin: auto;
width: 300px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
input {
font-size: 1rem;
border: 1px solid black;
background-color: white;
padding: 0.5rem;
margin: 0.25rem 0;
width: 100%;
}
input[type="submit"] {
color: white;
border: 1px solid white;
background-color: black;
cursor: pointer;
transition: all 0.3s;
}
input[type="submit"]:active {
background-color: gray;
}
form h4 {
width: 100%;
padding: 0.25rem;
margin: 0.5rem 0;
color: white;
background-color: black;
}