-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
81 lines (70 loc) · 1.21 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
body {
background-color: #121212;
color: #FFFFFF;
font-size: 12pt;
font-family: sans-serif;
margin: 10px;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
text-align: right;
}
button {
color: #000000;
padding: 10px;
width: 100px;
margin-left: 5px;
min-width: 70px;
}
.button-container {
margin: 10px;
display: flex;
align-items: center;
}
.message-box {
font-size: 10pt;
white-space: pre-wrap;
overflow: hidden;
max-width: 50vh;
}
.input-container {
margin-top: 10px;
display: flex;
flex-direction: row;
margin: 0;
flex: 1;
min-height: 90vh;
}
textarea {
flex: 1;
margin: 10px;
text-align: start;
align-items: flex-start;
overflow-x: scroll;
text-align: left;
font-size: 12pt;
background-color: #1d1d1d;
color: #FFFFFF;
}
.textarea-container {
flex: 1;
display: flex;
flex-direction: column;
}
.textarea-header {
margin-left: 10px;
margin-top: 10px;
font-weight: 600;
}
select {
color: black;
}
.slider {
margin-bottom: -5px;
}
#cell-character-input::placeholder {
font-size: 8pt;
}