This repository was archived by the owner on Aug 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (94 loc) · 1.45 KB
/
styles.css
File metadata and controls
115 lines (94 loc) · 1.45 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
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
115
:root {
--accent: #9B5DE5;
--accent2: #8954ca;
}
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
background-color: black;
color: white;
font-family: sans-serif;
place-items: center;
margin: 0;
height: 100vh;
}
h1 {
margin-top: 30px
}
h2 {
margin: 0;
}
h3 {
margin-top: 20px
}
.row {
display: flex;
flex-direction: row;
gap: 20px;
}
.games {
gap: 40px;
place-content: center;
margin-left: 20px;
margin-right: 20px;
margin-top: 20px
}
.col {
display: flex;
flex-direction: column;
gap: 20px;
}
.wrap {
flex-wrap: wrap;
}
.accent {
color: var(--accent);
}
.accent-bg {
padding: 5px 10px;
background-color: var(--accent);
}
.game {
gap: 5px;
place-items: center;
font-size: 20px;
transition: 0.25s all ease-in-out;
}
.game img {
border-radius: 15px;
width: 150px
}
a.game {
color: white;
text-decoration: none;
}
.game:hover {
scale: 1.05;
cursor: pointer;
}
button {
font-size: 20px;
background-color: var(--accent);
color: white;
border-style: none;
padding: 5px 10px;
transition: 0.25s background-color ease-in-out;
}
button:hover {
background-color: var(--accent2);
}
.rounded {
border-radius: 15px;
}
@media (max-width: 600px) {
h1 {
font-size: 1.5em;
}
.game img {
border-radius: 15px;
width: 100px
}
}