-
Notifications
You must be signed in to change notification settings - Fork 1
/
hide.css
79 lines (67 loc) · 1.46 KB
/
hide.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
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
/* Hiding various elements */
.hidden {
visibility: hidden !important;
}
#top .logo .text,
a#logo,
a#startTestButton.textButton.view-start,
div.icon,
div.notificationBubble,
div.text,
div.textButton,
button#contactPopupButton.textButton,
button#supportMeButton.textButton,
a.textButton,
button.current-theme.textButton,
button.currentVersion.textButton,
#top,
#menu,
#testConfig,
#bottom {
visibility: hidden !important;
}
#menu {
display: none;
}
/* Typing test adjustments */
#typingTest {
transform: translateY(-140px);
margin: 0 10%;
}
/* Trying to move account button but can't
a.textButton.account.view-account,
div.icon,
i.far.fa-fw.fa-user {
transform: translateX(200px);
transform: translateY(-30px);
}
/* Command line styles */
#commandLine {
background: none !important;
}
#commandLineWrapper {
background: none;
backdrop-filter: blur(5px) brightness(0.5);
transition: 0.5s ease;
}
#commandLine input {
background: none !important;
}
#commandLine > div:first-child {
border-radius: 0;
border-bottom: 1px solid var(--sub-color) !important;
}
/* Command line scrollbar */
#commandLine .suggestions {
scrollbar-width: none !important;
scrollbar-color: rgba(255, 255, 255, 0.1) transparent !important;
}
#commandLine .suggestions:hover {
scrollbar-width: thin !important;
}
#commandLine .suggestions::-webkit-scrollbar {
width: 0;
}
#commandLine .suggestions:hover::-webkit-scrollbar {
width: 7px;
}