-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredits.css
More file actions
41 lines (40 loc) · 1.03 KB
/
credits.css
File metadata and controls
41 lines (40 loc) · 1.03 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
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
flex-direction: row; /* Change this line */
font-family: ubuntu, sans-serif;
background-color: white;
color: black;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
#text {
text-align: center;
font-size: 20px;
}
#image {
align-self: center;
margin-left: 20px; /* Add this line to add some space between the text and the image */
}
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(51, 51, 51);
color: white;
}
}
.highlight {
font-size: 12px; /* Adjust as needed */
}