-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
77 lines (67 loc) · 1.16 KB
/
styles.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
68
69
70
71
72
73
74
75
76
77
body {
margin: 0;
padding: 0;
background: black;
font-family: 'Share Tech', sans-serif;
width: 100vw;
height: 100vh;
}
a {
color: #56BC58;
}
.alerts {
position: fixed;
bottom: 1rem;
left: 1rem;
display: flex;
align-items: center;
opacity: 0;
transform: scale(0);
transform-origin: left;
transition: all 1s;
}
#speech {
display: inline-block;
font-size: 36px;
text-align: center;
line-height: 50px;
/* color: #56BC58; */
color: white;
border: 4px solid #56BC58;
border-radius: 30px;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
padding: 0px 20px;
text-overflow: ellipsis;
max-width: 800px;
margin-left: 0.5rem;
background-color: rgba(0, 0, 0, 0.6);
}
.visible {
visibility: visible;
width: auto;
}
.bold {
color: #56BC58;
font-weight: bold;
}
.team-badge {
margin-top: 0.5rem;
}
.cheer-mote {
margin: 0.5rem;
width: 50px;
height: 50px;
}
img[src$="#emote"] {
margin: 0.5rem;
width: 50px;
height: 50px;
}
.cheer-message {
display: block;
max-width: 800px;
}
.cheer-message * {
margin-top: auto;
margin-bottom: auto;
}