-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
32 lines (29 loc) · 827 Bytes
/
styles.css
File metadata and controls
32 lines (29 loc) · 827 Bytes
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
body {
/* Dark gradient background */
background-image: linear-gradient(to bottom, #2f2f4f, #1e1e2c);
background-size: 100% 100vh;
background-repeat: no-repeat;
height: 100vh;
margin: 0;
padding: 0;
}
#quote-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: 24px;
font-weight: bold;
font-family: 'ClashDisplay-Semibold.otf', sans-serif;
src: url('fonts/ClashDisplay-Semibold.otf');
color: #fff; /* White text color */
z-index: 1; /* Make sure the quote display is on top of the default interface */
}
#quote {
margin: 20px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.2); /* Transparent white background */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}