-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPixeLife.css
More file actions
45 lines (40 loc) · 1.04 KB
/
PixeLife.css
File metadata and controls
45 lines (40 loc) · 1.04 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
body {
font-family: 'Courier New', Courier, monospace;
text-align: center;
background-color: black;
color: white;
user-select: none;
}
#board {
margin: 0 auto;
user-select: none;
}
#selector {
display: block;
text-align: center;
justify-content: center;
margin: auto;
width: 600px
}
#selector button {
margin: 10px;
cursor: pointer;
border: solid 1px #333; /* Slightly darker border for contrast */
border-radius: 5px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 1rem; /* More scalable than 'large' */
padding: 5px 5px; /* Adds space around the text */
display: inline-block;
max-height: 40px; /* More room for the text */
transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover transition */
}
#selector button:hover {
transform: scale(1.05);
opacity: 0.7;
}
/*.btn-group button {
display: flex;
margin: 90px; /* Adjust spacing between buttons */
/* Add other styling properties as needed
}*/