-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsty.css
More file actions
102 lines (86 loc) · 1.92 KB
/
sty.css
File metadata and controls
102 lines (86 loc) · 1.92 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
@keyframes vibrate {
0% { transform: translate(0); }
50% { transform: translate(-1px, 1px); }
100% { transform: translate(0); }
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
color: #310e0e;
text-align: center;
margin: 0 auto;
padding: 0;
overflow-x: hidden; /* Remove this */
}
p {
font-family: "Courier New", Courier, monospace;
color: #ffffff;
filter: blur(0.3px);
word-wrap: break-word;
overflow-wrap: break-word;
margin: 0.1em 0;
}
strong {
font-family: "Courier New", Courier, monospace;
color: #ff4d4d;
text-shadow: 0px 0px 10px rgba(255, 77, 77, 0.719);
}
div {
padding: 5px;
}
body::-webkit-scrollbar {
width: 10px;
}
body::-webkit-scrollbar-track {
background-color: transparent;
}
body::-webkit-scrollbar-thumb {
background-color: #ffffff;
border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
background-color: #cacaca;
}
footer {
position: relative;
width: 100%;
background: rgba(0, 0, 0, 0.242); /* transparent background */
color: #ffffff;
text-align: center;
font-size: 0.9rem;
z-index: 3;
bottom: -700px;
}
.red-link {
color: #c39a9a82;
text-decoration: none;
font-weight: bold;
text-shadow: 2px 2px 3px #240303;
transition: color 1s, opacity 1s; /* Transition stays here */
}
.red-link:hover {
color: #ffffff; /* Change the color on hover */
text-decoration: underline;
opacity: 1; /* Make the link not transparent on hover */
}
@media screen and (min-width: 768px) {
#toggle-footer {
font-size: 1rem;
}
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}