-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-branding.css
57 lines (48 loc) · 1.51 KB
/
custom-branding.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
/*
PUT THIS SNIPPET INTO YOUR QUICKCSS TO CUSTOMISE:
:root {
--watermark: "your discord!";
--home-button-image: url("https://i.postimg.cc/52m3zr3n/Pawele-X-transparent.png");
--home-button-bg: "transparent";
--home-button-size: 100%;
}
*/
@import url(https://discord-theme.pages.dev/assets/snippets/discord-font.css);
@import "https://raw.githubusercontent.com/XaaRii/discord-themes/master/april-fools.css";
/* Watermark */
[class*="wordmark"]:after {
content: var(--watermark);
font-size: 14px;
font-weight: 700;
white-space: nowrap;
font-family: "Discord";
}
[class*="wordmark"] svg {
display: none;
}
[class*="wordmark"] {
max-width: 90vw;
overflow: hidden;
text-overflow: ellipsis;
}
/* home icon */
div[data-list-item-id="guildsnav___home"]>div[class*="childWrapper"] {
background: var(--home-button-image, url("https://www.rawshorts.com/freeicons/wp-content/uploads/2017/01/black_repicthousebase_1484336385-1.png"));
opacity: 99%;
visibility: hidden;
background-size: 0%;
}
div[data-list-item-id="guildsnav___home"] {
background: var(--home-button-image, url("https://www.rawshorts.com/freeicons/wp-content/uploads/2017/01/black_repicthousebase_1484336385-1.png"));
position: absolute;
background-color: var(--home-button-bg, transparent) !important;
background-size: var(--home-button-size, contain);
background-repeat: no-repeat;
background-position: center;
height: 100%;
width: 100%;
transition: 0.2s ease;
}
[class*="acronym"] {
visibility: visible !important;
}