-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (70 loc) · 2.47 KB
/
style.css
File metadata and controls
77 lines (70 loc) · 2.47 KB
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
@import url('https://fonts.googleapis.com/css2?family=Dangrek&family=Figtree:ital,wght@0,300..900;1,300..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ms+Madi&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
--background-color: #0a0a1a;
--text-color: #e0e0e0;
--primary-color: #00ffcc;
--secondary-color: #1a1a2e;
--accent-color: #ff00ff;
--card-background: #1a1a2e;
--card-border: #00ffcc;
--card-shadow: rgba(0, 255, 204, 0.3);
--card-flipped-background: #6b5b95;
--card-flipped-border: #ff00ff;
--card-flipped-shadow: rgba(255, 0, 255, 0.5);
--card-matched-background: #00cc99;
--card-matched-outline: #00ffcc;
--button-background: #00ffcc;
--button-hover-background: #00cc99;
--button-text-color: #1a1a2e;
--popup-background: rgba(0, 0, 0, 0.8);
--popup-content-background: #1a1a2e;
--popup-content-border: #00ffcc;
--popup-content-shadow: rgba(0, 255, 204, 0.5);
--mode-toggle-background: #00ffcc;
--mode-toggle-hover-background: #ff00ff;
--mode-toggle-shadow: rgba(255, 0, 255, 0.5);
--back-button-background: #fc3b3b;
--back-button-hover-background: #ff2c2c;
--back-button-shadow: rgba(250, 18, 33, 0.5);
}
* {
font-family: "Kantumruy Pro" sans-serif;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: var(--background-color);
height: 100vh;
}
.content-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.content-container h1 {
color: var(--text-color);
font-family: "Kantumruy Pro",sans-serif;
margin-bottom: 50px;
}
#playButton {
padding: 10px 50px 10px 50px;
background: var(--primary-color);
font-family: "Kantumruy Pro", sans-serif;
font-weight: bold;
font-size: 1.2rem;
color: var(--secondary-color);
border-radius: 10px;
border: none;
outline: none;
cursor: pointer;
transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,opacity 0.5s ease-out;
box-shadow: var();
opacity: 0;
}
#playButton:hover {
transform: translateY(-10px) scale(1.2);
box-shadow: 0 0 50px var(--mode-toggle-shadow);
}