-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (43 loc) · 1005 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (43 loc) · 1005 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stalinist+One&display=swap');
body {
text-align: center;
background-color: rgb(255,155,4)
}
h1, p {
font-family: 'Knewave', cursive;
color: rgb(255,254,252);
}
h1 {
font-size: 3rem;
}
.container {
position: relative;
width: 20rem;
height: 20rem;
margin: 1rem auto;
background-image: url('zone.png');
background-repeat: no-repeat;
background-size: cover;
border-radius: 0.75rem;
}
.mars {
position: relative;
top: 58%;
left: 3.5%;
width: 11rem;
height: 6.9rem;
transform: skewY(-2deg) skewX(-1.5deg);
border-radius: 0.3rem;
}
button {
font-family: 'Stalinist One', cursive;
padding: 0.5rem 0.7rem;
line-height: 3rem;
font-size: 1.2rem;
font-weight: 700;
color: rgb(159,223,9);
background-color: rgb(106,21,173);
border: none;
border-radius: 0.7rem;
}