-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.scss
103 lines (102 loc) · 1.98 KB
/
theme.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
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
103
:root {
--text-color: #fff;
--activity-bg: #627ee4;
--spotify-bg: #1ed860;
--twitch-bg: #6441a5;
--bot-bg: #546cc4;
--xbox-bg: #107c10;
}
.activityUserPopout-2MzGCj,
.activityProfile-1712BN {
//styling
h3,
.content-tXPNDw,
.activityName-3YXl6e,
.details-2-ciHo {
color: var(--text-color) !important;
}
.colorGrey-2iAG-B {
background-color: transparent !important;
border: var(--text-color) 2px solid;
transition: 0.5s;
&:hover {
background-color: var(--text-color) !important;
border-color: transparent;
color: black !important;
}
}
//defualt
background-color: var(--activity-bg);
padding: 10px;
border-radius: 6px;
margin-bottom: 10px;
z-index: 1;
//twitch
.detailsWrap-omKn0b.textRow-1sENuL[title] {
&::after {
content: "";
width: 100%;
height: 100%;
z-index: -2;
background-color: var(--twitch-bg);
position: absolute;
top: 0;
left: 0;
border-radius: 6px;
}
}
//spotify
.timeBarUserPopout-qLXZaR,
.timeBarProfile-1z_HH- {
&::after {
content: "";
width: 100%;
height: 100%;
z-index: -1;
background-color: var(--spotify-bg);
position: absolute;
top: 0;
left: 0;
border-radius: 6px;
}
}
.platformIcon-k3yytQ {
margin: 5px 5px 0px 0px;
path {
fill: (var(--text-color));
}
}
// bots
.contentNoImagesUserPopout-12NyFa {
&::after {
content: "";
width: 100%;
height: 100%;
z-index: -2;
background-color: var(--bot-bg);
position: absolute;
top: 0;
left: 0;
border-radius: 6px;
}
}
//xbox
.xboxAssets-aGhVw8 ~ div::after {
content: "";
width: 100%;
height: 100%;
z-index: -2;
background-color: var(--xbox-bg);
position: absolute;
top: 0;
left: 0;
border-radius: 6px;
}
}
.activityProfile-1712BN {
margin: 10px;
border-radius: 6px;
.platformIcon-k3yytQ {
margin: 0px;
}
}