generated from codedlabs/web-cw-0
-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathstyle.css
62 lines (53 loc) · 1.03 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
@import url("https://fonts.googleapis.com/css2?family=Handjet:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
font-family: "Handjet", cursive;
background: rgb(181, 149, 116);
background: linear-gradient(
288deg,
rgba(181, 149, 116, 1) 0%,
rgba(255, 223, 190, 1) 100%
);
background-position: center center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
}
.score-container {
display: flex;
align-items: center;
justify-content: space-evenly;
}
h1 {
font-size: 60px;
}
h3 {
font-size: 40px;
margin: 10px;
}
p {
font-size: 40px;
margin: 10px;
}
.img-container {
width: 512px;
height: 512px;
display: flex;
justify-content: center;
align-items: center;
}
img:active {
width: 480px;
height: 480px;
}
img:hover {
cursor: pointer;
}