-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (85 loc) · 2.26 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (85 loc) · 2.26 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
/* i used ai for the css because im dumb lmao */
body {
background: #111;
color: #eee;
font-family: system-ui, sans-serif;
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
h1,
p {
margin: 0.5rem 0;
}
p {
max-width: 40rem;
color: darkgray;
}
/* --- FIXED BULLET LIST STYLES --- */
ul {
text-align: left; /* Keeps text and bullets aligned together */
display: inline-block; /* Allows the list block to be centered by the body */
margin: 0.8rem 0 2rem 0;
padding-left: 20px; /* Leaves room for the bullets */
}
li {
color: #eee;
font-size: 1rem;
margin-bottom: 0.4rem;
}
/* Custom bullet color to match your blue glow theme */
li::marker {
color: #71D4FE;
}
/* --------------------------------- */
.btn-160 {
box-shadow: 0px 3px 3px rgba(0, 0, 0, .7);
color: #ffffff;
/* CHANGED: Increased left/right padding for better horizontal whitespace */
padding: 15px 30px;
background: #2F3336;
border-radius: 12px;
text-shadow: 0px 0px 40px #71D4FE, 0px 0px 80px #71D4FE;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
text-decoration: none;
user-select: none;
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 14px;
letter-spacing: 1px;
border: none;
/* ADDED: Forces the buttons to stretch to the full width of the grid track */
width: 100%;
box-sizing: border-box; /* Ensures padding doesn't break the layout width */
}
.btn-160:active {
box-shadow: 0 0px 4px rgba(68, 68, 68, 0.25);
}
/*** disabled style ***/
.btn-160:disabled {
pointer-events: none;
opacity: .65;
color: #7e7e7e;
background: #dcdcdc;
box-shadow: none;
text-shadow: none;
}
/*** css-buttons.com ***/
.button-container {
display: grid;
/* CHANGED: Tells grid columns to automatically size themselves to the max-content (the longest button) */
grid-template-columns: repeat(3, max-content);
gap: 15px;
justify-content: center; /* Keeps the entire grid centered on your page */
}
.button-container a {
text-decoration: none;
display: flex; /* Ensures the <a> tag behaves nicely with the stretched button inside */
}