-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (76 loc) · 1.18 KB
/
style.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
* {
font-family: 'Montserrat', sans-serif;
animation: fadein 1s;
}
h1, h2, h3 {
text-align:center;
}
img {
width:300px;
}
h3 {
font-weight: 400;
}
#toppings {
text-align:center;
}
#map2 {
width:50%;
height:400px;
margin:3%;
display:none;
}
#toppings {
display:none;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@media only screen and (max-width: 1080px) {
#map2 {
width:90%;
}
}
@media only screen and (max-width: 1080px) {
image {
width:80%;
}
}
#quantity {
margin:50px;
}
.rise {
-webkit-animation: jump 1s cubic-bezier(0.3, 1.2, 0.8, 1.2);
animation: jump 1s cubic-bezier(0.3, 1.2, 0.8, 1.2);
}
@-webkit-keyframes jump {
0% {
transform: translateY(150px);
}
100% {
transform: translateY(0px);
}
}
@keyframes jump {
0% {
transform: translateY(150px);
}
100% {
transform: translateY(0px);
}
}
iframe {
width:40%;
height:50%;
text-align:center;
}
button {
border-radius:5%;
margin:1%;
padding:10px;
border-style:solid;
color:white;
background-color:green;
border-color:green;
}