-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.css
50 lines (44 loc) · 919 Bytes
/
snake.css
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
/* HTML customization */
html {
margin: 0;
height: 100%;
overflow: hidden
}
/* Body customization */
body {
font-family: "JetBrainsMono Nerd Font", $font-family-base,;
margin: 0;
height: 100%;
overflow: hidden
}
/* Card customization */
.card {
background-color: #292929;
transition: all 0.3s ease;
border: 1px solid #727272;
border-radius: 6px;
}
/* Footer customization */
.footer-shadow {
box-shadow: 0px -4px 6px rgb(0, 0, 0);
}
.custom-footer-text {
color: #fff;
font-size: 16px;
font-weight: bold;
white-space: nowrap; /* Prevent text from wrapping */
overflow: hidden; /* Hide overflow if the text is too long */
text-overflow: ellipsis; /* Add ellipsis (...) if text is cut off */
}
/* Modal customization */
.modal-content {
background-color: #323232;
border-radius: 15px;
}
.modal-title {
font-weight: bold;
font-size: 24px;
}
.modal-body p {
font-size: 20px;
}