-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.css
108 lines (94 loc) · 1.47 KB
/
index.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
103
104
105
106
107
108
* {
border: 0;
margin: 0;
outline: 0;
padding: 0;
}
body {
font:
14px/22px '-apple-system',
'Helvetica Neue',
Helvetica,
Arial,
sans-serif;
position: absolute;
width: 100%;
}
.buttons {
align-items: center;
position: absolute;
display: flex;
justify-content: end;
top: 50px;
right: 0;
padding: 5px;
}
#errorIcon {
color: red;
}
.button {
background: transparent;
border-radius: 4px;
color: #333;
font-size: 12px;
height: 30px;
line-height: 30px;
text-align: center;
touch-action: manipulation;
user-select: none;
width: 40px;
}
.button:hover {
background: #eee;
color: #111;
}
#app {
display: flex;
height: 100vh;
}
#leftInput,
#rightOutput {
position: relative;
display: flex;
flex-grow: 1;
flex-basis: 0;
flex-direction: column;
}
#rightOutput {
border-left: 1px solid #cccccc;
}
textarea {
border-top: 1px solid #cccccc;
box-sizing: border-box;
font-size: 15px;
height: 100%;
padding: 10px;
resize: none;
flex-grow: 1;
}
#rightOutput textarea {
background: #eeeeee;
}
h2 {
font-weight: normal;
line-height: 50px;
padding: 0 10px;
text-align: center;
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 200px;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
padding: 12px 16px;
right: 0;
z-index: 1;
user-select: none;
}
.dropdown:hover .dropdown-content {
display: block;
}