forked from CodingGarden/stream-overlay-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
50 lines (45 loc) · 839 Bytes
/
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
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: 26px;
text-align: center;
line-height: 50px;
color: #56BC58;
background-color: rgb(255, 255, 255);
border: 4px solid #56BC58;
border-radius: 30px;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
padding: 0px 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.visible {
visibility: visible;
width: auto;
}
.bold {
color: black;
font-weight: bold;
}