-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (95 loc) · 2 KB
/
styles.css
File metadata and controls
109 lines (95 loc) · 2 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
/* Basic reset for margins and paddings */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Center the main content */
body {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
background-color: #141414;
color: #e5e5e5;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
padding: 20px; /* Add some padding to prevent content from touching screen edges */
}
/* Main Logo and Heading */
header {
margin-bottom: 1rem;
}
header h1 {
font-size: 2.2rem;
color: #ffffff;
font-weight: bold;
}
header h1 .accent {
color: #9eff00;
}
header h2 {
font-size: 1.5rem;
color: #e5e5e5;
margin-bottom: 1.5rem;
}
/* Description Text */
.description {
max-width: 600px;
line-height: 1.5;
color: #e5e5e5;
font-size: 1rem;
margin-bottom: 1.5rem;
}
/* Roll button styling */
#rollButton {
padding: 15px 35px;
font-size: 1.2rem;
font-weight: bold;
color: #000;
background-color: #9eff00;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
margin-top: 20px;
}
#rollButton:hover {
background-color: #7fc800;
}
/* Statistics section styling */
#stats {
margin-top: 1.5rem;
font-size: 1rem;
color: #e5e5e5;
border: 1px solid #9eff00;
padding: 15px;
width: 100%; /* Full width for adaptability */
max-width: 600px; /* Center and limit width for larger screens */
border-radius: 5px;
text-align: center;
}
/* Footer text style */
footer {
margin-top: 2rem;
font-size: 0.85rem;
color: #888888;
text-align: center;
width: 100%;
max-width: 600px; /* Match width of stats box for consistency */
}
footer a {
color: #9eff00;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Text styling within statistics box */
#stats p {
margin: 0.5rem 0;
}
.key {
font-weight: bold;
color: #bb86fc; /* Light purple for key emphasis */
}