-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbase.css
80 lines (72 loc) · 1.18 KB
/
base.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
78
79
80
body {
width: 100%;
height: 100%;
position: absolute;
background: #000000;
margin: 0;
padding: 0;
overscroll-behavior: none;
}
.container {
width: 100%;
height: 100%;
position: relative;
}
.ui {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
font-family: 'Odibee Sans', cursive;
font-size: 40px;
}
.row {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-end;
}
.chat-ui {
display: flex;
flex-direction: column;
background: rgba(1.0, 1.0, 1.0, 0.0);
width: 800px;
height: 200px;
padding: 10px 10px;
padding-bottom: 200px;
border-radius: 10px;
}
.chat-ui-text-area {
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
justify-content: flex-end;
}
.chat-text {
font-size: .75em;
text-shadow: 2px 2px 5px black;
color: white;
text-align: center;
}
.chat-text.fadeOut {
opacity: 1.0;
animation: fadeOut 5s ease-in-out forwards;
}
@keyframes fadeOut {
0% {
opacity: 1.0;
visibility: visible;
}
90% {
opacity: 1.0;
visibility: visible;
}
100% {
opacity: 0.0;
visibility: hidden;
}
}