-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverbalisk.css
82 lines (73 loc) · 1.32 KB
/
verbalisk.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
.css-identical-homeworld {
color: red;
}
.css-chat-container {
flex: 1 85%;
min-height: 240px;
max-height: 240px;
position: relative;
border: 5px solid hsla(167, 82%, 68%, 1);
}
.css-chat-messages-container {
overflow-y: hidden;
height: 180px;
padding-top: 20px;
}
.css-chat-slots {
height: 180px;
list-style-type: none;
padding-left: 16px;
padding-right: 5px;
}
.css-chat-slot {
border: 0;
border-radius: 0;
color: #69F0D2;
font-size: 18px;
padding-bottom: 10px;
}
.css-chat-input {
padding-left: 16px;
padding-top: 5px;
padding-bottom: 5px;
color: #69F0D2;
font-size: 18px;
font-family: 'Lucida Console', Monaco5, monospace;
background-color: black;
outline: 0;
border: 0;
position: absolute;
bottom: 0;
width: calc(100% - 16px);
height: 32px;
}
::-webkit-input-placeholder {
color: #69F0D2;
}
:-moz-placeholder {
color: #69F0D2;
}
::-moz-placeholder {
ccolor: #69F0D2;
}
:-ms-input-placeholder {
color: #69F0D2;
}
.css-chat-user-list-container {
flex: 1 15%;
display: flex;
flex-direction: column;
border: 5px solid hsla(167, 82%, 68%, 1);
border-left: 0;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
}
.css-user-list-item {
color: #69F0D2;
font-size: 18px;
padding-bottom: 4px;
}
.css-user-list-item-me {
color: #EDE66A;
}