-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (49 loc) · 966 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
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Guides:[email protected]&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 374px;
margin: 0 auto;
margin-top: 50px;
background-color: #080808;
}
.container__one {
height: 20%;
}
.container__two {
height: 80%;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: white;
font-family: 'Edu AU VIC WA NT Guides', cursive;
}
button {
margin-top: 20px;
width: 100%;
padding: 15px 10px;
background-color: #f1356d;
color: white;
border: none;
cursor: pointer;
border-radius: 10px 10px 0 0;
font-weight: bold;
}
img {
width: 374px;
height: 100%;
object-fit: cover;
border-radius: 0 0 10px 10px;
}
@media queries (max-width: 400px) {
body {
width: 100%;
}
img {
width: 100%;
}
}