blob: a841c3a6ec5a23bf2bf181839c74647a57dd8eea (
plain)
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
|
div#about {
-webkit-user-select: text;
-moz-user-select: text;
user-select: text;
max-width: 600px;
white-space: normal;
padding: 5px 5px 5px 5px;
}
div#about td.logo {
padding-right: 25px;
}
div#about td.title {
font-size: 1.2em;
}
div#about td.copyright {
font-size: 0.8em;
}
div#about tr.version {
font-family: monospace;
}
div#about textarea {
display: block;
resize: none;
width: 100%;
height: 200px;
padding: 0;
color: var(--fg-color-light);
background-color: var(--bg-color-dark);
border: none;
border-radius: 4px;
outline: 0 !important;
box-sizing: border-box;
padding: 5px;
font-family: monospace;
-webkit-appearance:none;
}
div#about textarea::-moz-placeholder {
line-height: 190px;
text-align: center;
}
div#about textarea::-webkit-input-placeholder {
line-height: 190px;
text-align: center;
}
div#about textarea::-webkit-scrollbar {
width: 8px;
}
div#about textarea::-webkit-scrollbar-thumb {
border-radius: 4px;
background: var(--fg-color-inactive);
}
|