-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (97 loc) · 1.79 KB
/
styles.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@import url("https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap");
:root {
--white-color: #fff;
--button-correct: #5aae76;
--button-wrong: #e13e3e;
--button-hover: #aaa;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
text-align: center;
font-family: "Poppins", sans-serif;
background: linear-gradient(162.44deg, #3b4cca 0%, #ff3535 100%);
color: var(--white-color);
}
.container {
max-width: 300px;
flex-direction: column;
gap: 50px;
}
.header {
margin: 0;
font-family: "Rammetto One", sans-serif;
font-size: 24px;
font-weight: 400;
height: 100px;
}
#pokemonImage {
height: 200px;
max-width: 100%;
}
.options-container {
display: flex;
flex-wrap: wrap;
}
button {
height: 52px;
margin: 10px;
width: calc(50% - 20px);
font-family: "Poppins", sans-serif;
font-weight: 700;
font-size: 17px;
text-transform: capitalize;
cursor: pointer;
background-color: var(--white-color);
border: none;
border-radius: 5px;
}
button:hover {
background-color: var(--button-hover);
color: var(--white-color);
}
button.correct {
background-color: var(--button-correct);
color: var(--white-color);
}
button.wrong {
background-color: var(--button-wrong);
color: var(--white-color);
}
#loadingContainer {
height: 500px;
}
#points {
margin: 0;
font-size: 24px;
font-weight: 700;
text-align: center;
}
#loadingIcon {
width: 200px;
height: 200px;
position: relative;
top: 20%;
}
.show {
display: flex;
}
.hide {
display: none;
}
.footer-bottom {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background-color: #f0f0f000; /* Warna latar belakang footer */
text-align: center;
padding: 10px;
}
body {
min-height: 100vh;
position: relative;
}