blob: 3d9dd1f6f3c03fc31a2c6c870dde1fc5a2853fc1 (
plain)
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
128
129
130
131
132
133
134
135
136
|
#discoverablemap {
position: absolute;
height: 100%;
width: 100%;
background-color: brown;
display: flex;
}
body {
height: 100vh;
width: 100vw;
}
main {
position: relative;
height:100%;
}
/* Describes the styling of all <article> elements */
article {
color: var(--light-text-color);
border: none;
display: block;
width: 100%;
position: relative;
}
/* Describes the styling of all elements with class="parkname", note the . in front of parkname */
.parkname {
background-color: white;
color: black;
font-size: 1rem;
font-weight: bold;
text-transform: none;
display: block;
height: auto;
}
/* Describes the styling of all elements with class="parkname", note the . in front of parkname */
.parkdescription {
font-size: 1rem;
text-align: left;
height: 30px;
margin: 15px 15px 0 15px;
}
.order {
padding-top: 25px;
text-align:center;
}
.prices {
margin-bottom: 15px;
margin-left: 15px;
margin-right: 15px;
font-size: 0.9rem;
}
.total {
margin: 10px;
font-size: 0.9rem;
}
.adultinput {
width:100%;
}
.kidsinput {
width:100%;
}
.orderbutton {
background: hsl(170deg 0% 64%);
border-radius: 12px;
border: none;
padding: 0;
cursor: pointer;
outline-offset: 4px;
margin: 20px;
}
.front {
font-size: 1rem;
padding: 6px 15px;
padding: 10px 9px;
font-size: 1.2rem;
display: block;
border-radius: 12px;
background: var(--primary-color);
color: white;
transform: translateY(-4px);
transition:
transform 600ms
cubic-bezier(.3, .7, .4, 1);
}
.disabled {
display: block;
border-radius: 12px;
background: grey;
color: white;
transform: translateY(-2px);
padding: 10px 9px;
font-size: 1.2rem;
}
.orderbutton:hover .front {
transform: translateY(-6px);
transition:
transform
250ms
cubic-bezier(.3, .7, .4, 1.5);
}
.orderbutton:active .front {
transform: translateY(-2px);
}
.orderbutton:active .disabled {
transform: translateY(-2px);
}
.orderbutton:hover .disabled {
transform: translateY(-2px);
}
.cancel .front {
font-size: 1rem;
padding: 6px 15px;
}
|