forked from snapshot-labs/snapshot-spaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackd.scss
45 lines (40 loc) · 1.11 KB
/
backd.scss
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
.backd {
--primary-color: #C532F9;
--bg-color: #0a0622;
--text-color: #9d9ca6;
--link-color: white;
--heading-color: white;
--border-color: transparent;
--header-bg: #1C0B38;
--block-bg: #0F0830;
#topnav {
border-bottom: 4px solid black !important;
border-image-slice: 1;
border-image-source: linear-gradient(to right, #C532F9, #32B2E5);
}
.bg-skin-header-bg {
position: relative !important;
}
.bg-skin-header-bg:after {
content: "";
width: 100%;
height: 3px;
background: linear-gradient(to right, #C532F9, #32B2E5);
bottom: -3px;
left: 0;
position: absolute;
opacity: 0.2;
}
.button--primary {
transition: background-position 0.5s !important;
background-size: 200% auto !important;
border: none !important;
background-origin: border-box !important;
background-clip: padding-box, border-box !important;
background-image: linear-gradient(to right, #C532F9 0%, #32B2E5 50%, #C532F9 100%) !important;
filter: brightness(1) !important;
}
.button--primary:hover {
background-position: right center !important;
}
}