Skip to content

Commit cede8bb

Browse files
authored
Create style.css
1 parent 6c165ed commit cede8bb

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

style.css

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
body {
2+
margin: 0;
3+
padding: 0;
4+
background: transparent;
5+
font-family: Arial, sans-serif;
6+
}
7+
8+
.overlay {
9+
background-color: rgba(128, 128, 128, 0.8); /* Gray semi-transparent */
10+
color: #000000; /* Black text */
11+
padding: 20px;
12+
border-radius: 10px;
13+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
14+
width: 360px;
15+
text-align: left;
16+
}
17+
18+
h1 {
19+
font-size: 20px;
20+
margin-bottom: 15px;
21+
color: #FFFFFF; /* White for accent */
22+
text-align: center;
23+
}
24+
25+
.stats {
26+
display: grid;
27+
grid-template-columns: 1fr;
28+
gap: 10px;
29+
}
30+
31+
.stat {
32+
display: flex;
33+
justify-content: space-between;
34+
align-items: center;
35+
background-color: rgba(0, 0, 0, 0.2); /* Darker gray for stats */
36+
padding: 8px;
37+
border-radius: 5px;
38+
color: #FFFFFF; /* White text for stats */
39+
}
40+
41+
label {
42+
font-weight: bold;
43+
color: #FFFFFF;
44+
}
45+
46+
span {
47+
font-size: 14px;
48+
color: #FFFFFF;
49+
}

0 commit comments

Comments
 (0)