-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcss
67 lines (58 loc) · 1007 Bytes
/
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
html, body {
padding: 0;
margin: 0;
}
.container {
display: flex;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
}
.mySlides {
_display: none;
position: absolute;
display: none;
font-size: {{fontSize}}px;
color: {{fontColor}};
text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
text-align: {{textAlign}};
width: 100%;
}
.mySlides > div {
display: inline-flex;
gap: 9px;
align-items: center;
}
.icon {
text-align: center;
text-decoration: none;
float: left;
color: white;
}
.username {
text-transform: uppercase;
font-family: {{fontFamily}};
width: 100%;
text-align: center;
padding-top: 2px;
}
.amount {
color: {{accentColor}};
}
.mySlides span:first-of-type {
margin-right: 0.5rem;
}
.icons {
font-size: {{iconSize}}px;
color: {{accentColor}};
}
.mySlides svg {
width: {{iconSize}}px;
height: {{iconSize}}px;
fill: {{accentColor}};
filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.7));
}
.icons-A {
left: -3px;
}