This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (87 loc) · 2.12 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
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
html, body {
margin: 0 auto;
font-family: Arial, Helvetica, sans-serif;
color: #fff;
background: #36393f;
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
padding-top: 1.25rem;
}
.mention {
border-radius: 3px;
font-weight: 500;
color: #7289da;
padding: 2px 3px;
background: rgba(114,137,218,.1);
}
.timestamp {
color: #72767d;
position: relative;
margin-left: 10px;
font-size: 0.75rem;
text-align: center;
bottom: 5px;
}
.nick {
position: relative;
font-size: 1rem;
bottom: 5px;
}
.avatar {
position: relative;
width: 60px;
height: 60px;
border-radius: 50%;
bottom: 10px;
}
.message {
margin-top: 2rem;
margin-left: 2rem;
display: flex;
width: calc(100% - 2rem);
display: flex;
flex-direction: row;
}
.right {
margin-left: 18px;
place-items: center;
}
.messageContent {
font-size: 1.25rem;
margin: 0;
padding: 0;
border: 0;
}
.cube {
position: absolute;
width: 10px;
height: 10px;
background: #7289da;
animation: spinner-wandering-cubes 1.8s ease-in-out infinite
}
#loader {
height: 100%;
width: 100%;
position: fixed;
display: flex;
justify-content: center;
align-items: center;
visibility: hidden;
background: #36393f;
z-index: 999;
}
.emoji {
object-fit: contain;
width: 1.375em;
height: 1.375em;
vertical-align: bottom;
margin: 0;
padding: 0;
border: 0;
}
@keyframes spinner-wandering-cubes{25%{-webkit-transform:translateX(22px) rotate(-90deg) scale(.5);transform:translateX(22px) rotate(-90deg) scale(.5)}50%{-webkit-transform:translateX(22px) translateY(22px) rotate(-180deg);transform:translateX(22px) translateY(22px) rotate(-180deg)}75%{-webkit-transform:translateX(0) translateY(22px) rotate(-270deg) scale(.5);transform:translateX(0) translateY(22px) rotate(-270deg) scale(.5)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes spinner-chasing-dots-rotate-1WX_VU{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}