forked from 505e06b2/Image-to-Braille
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (56 loc) · 791 Bytes
/
style.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
body {
background: #333;
color: #eee;
font-family:sans-serif;
margin: 0px;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: row;
}
#text {
display: block;
white-space: pre;
outline: none;
min-width: 0px;
padding: 0px;
margin: 0px;
resize: none;
flex: 1 1;
background: white;
color: black;
}
#text.dark {
background: black;
color: white;
}
#options {
display: flex;
flex-direction: column;
flex: 0 0 20%;
text-align:left;
border-left: 10px solid #333;
user-select: none;
overflow: hidden;
}
@media screen and (orientation:portrait) {
#options {
flex: 0 0 40%;
}
}
#options > div {
padding-top: 15px;
padding-bottom: 15px;
}
input[type="number"] {
width: 60px;
}
a {
color: #eee;
}
.red {
color: #f33;
}
.green {
color: greenyellow;
}