-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (78 loc) · 1.44 KB
/
style.css
File metadata and controls
78 lines (78 loc) · 1.44 KB
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
html, body {
text-align: center !important;
margin: 0 auto;
font-family: 'Lato', sans-serif;
background-image: url(https://res.cloudinary.com/dytmcam8b/image/upload/v1593038716/wil-stewart-UErWoQEoMrc-unsplash_mggrvk.jpg);
height: 100%;
background-size: cover;
color: white;
overflow-x: hidden;
overflow-y: hidden;
background-attachment: fixed;
background-position: center;
}
.container {
text-align: center;
background-color: rgba(128, 128, 128, 0.6);
width: 80vw;
margin-top: 5vh;
margin-bottom: 10vh;
}
.interaction {
text-align: center;
display: block;
}
.results {
color: black;
padding: 20px;
}
form {
padding: 10px;
}
.random {
margin: 10px;
}
h1 {
font-family: 'Lobster', cursive;
font-size: 20px;
}
h2 {
font-size: 15px;
}
.submit {
margin: 10px;
}
#complete {
color: black;
}
#bottle {
height: 100px;
}
@media only screen and (min-width: 1000px) {
h1 {
font-size: 60px;
}
h2 {
font-size: 30px;
}
.container {
font-size: 2em;
}
#bottle {
height: 200px;
}
}
@media only screen and (min-width: 2000px) {
h1 {
font-size: 100px;
}
h2 {
font-size: 60px;
}
.container {
font-size: 3em;
}
#bottle {
height: 400px;
}
}