forked from DiscordStyles/FrostedGlass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_app.scss
More file actions
66 lines (65 loc) · 1.58 KB
/
_app.scss
File metadata and controls
66 lines (65 loc) · 1.58 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
#app-mount:before {
content: "";
background: var(--background-image);
background-position: var(--background-image-position, center);
background-size: var(--background-image-size, cover);
position: absolute;
height: calc(100vh + (var(--background-image-blur) * 2));
width: calc(100vw + (var(--background-image-blur) * 2));
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#app-mount {
.layers-3iHuyZ {
margin: var(--window-padding);
overflow: hidden;
border-radius: var(--window-roundness);
}
.layer-3QrUeG {
background: var(--tint);
}
// Container shadow
.base-3dtUhz:before {
content: "";
position: absolute;
height: 5px;
width: 100%;
background: linear-gradient(rgba(0,0,0,0.2), transparent);
z-index: 1;
top: 48px;
pointer-events: none;
user-select: none;
}
// Bot tags
.botTagRegular-2HEhHi {
background: var(--gradient);
color: var(--text-normal);
margin-top: 0;
}
.botText-1526X_ {
font-weight: 600;
}
.botTagInvert-18-95s {
color: rgb(var(--gradient-primary));
.botText-1526X_ {
font-weight: bold;
}
}
}
::selection {
background: rgb(var(--gradient-primary));
color: var(--text-normal);
}
// Update notice
#app-mount .app-2rEoOp::before {
content: "Your version of Frosted Glass is outdated. Please redownload";
white-space: pre-wrap;
display: var(--update-notice-1, block);
color: #fff;
text-align: center;
padding: 10px 0;
box-sizing: border-box;
background: rgb(var(--discord-blurple), 0.7);
text-shadow: 0 2px 3px rgba(0,0,0,var(--text-shadow));
}