-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
60 lines (51 loc) · 954 Bytes
/
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
@import url('https://fonts.googleapis.com/css?family=Pacifico');
video, canvas {
display: block;
margin: 0 auto;
position: absolute;
left: 50%;
margin-left: -250px;
}
body {
background-color: navy;
font-family: 'Pacifico', cursive, sans-serif;
color: white;
display: block;
}
h1 {
font-size: 70px;
margin: -10px;
}
video {
border: 5px solid white;
}
button {
padding: 10px 10px;
margin: 0px 10px 10px 0px;
border-radius: 5px;
font-size: 25px;
background-color: #ff99cc;
border-bottom: 5px solid #ff66b3;
color: white;
text-decoration: none;
}
button:active {
transform: translate(0px,5px);
border-bottom: 1px solid;
}
.container {
display: grid;
grid-row-gap: 10px;
grid-template-columns: 1fr;
text-align: center;
}
@media (max-width: 800px) {
h1 {
font-size: 50px;
}
}
@media (max-width: 550px) {
h1 {
font-size: 30px;
}
}