-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.scss
More file actions
125 lines (111 loc) · 1.76 KB
/
index.scss
File metadata and controls
125 lines (111 loc) · 1.76 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
html,
body {
height: 100%;
font-family: avenir, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
display: flex;
flex-direction: column;
// justify-content: center;
align-items: center;
padding: 1rem 1rem 2rem;
margin: 0 auto;
border-bottom: 2rem solid green;
height: auto;
max-width: 70em;
}
#inputs,
textarea,
pre {
width: max(50vw, min(90vw, 500px));
padding: 1rem;
margin: auto;
border-radius: 0.25rem;
border: solid;
}
textarea:read-only,
pre:read-only {
background: #eee;
}
textarea:not(:read-only):focus,
textarea:not(:read-only):hover {
background: #d3f3fd;
}
#similarities {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.settings {
display: grid;
grid-template-columns: auto auto;
justify-items: end;
gap: 1rem;
margin-block-end: 1rem;
input {
width: 100%;
}
}
.settings,
#typo_fix_suggestions {
padding: 1rem;
border: 1px solid black;
border-radius: 0.25rem;
}
#start,
#hide_tooltips,
#processKnn {
padding: 1rem;
}
#chart {
transition: filter 1s, height 1s, width 1s;
background: #f4f4f4;
&.in-progress {
background: lightgrey;
filter: blur(5px);
}
}
#hide_tooltips {
margin-bottom: 3rem;
&:disabled {
opacity: 0;
}
}
.typo-row {
display: flex;
gap: 0.25rem;
flex-wrap: wrap;
> * {
display: flex;
align-items: center;
}
.red {
padding: 0.25rem;
}
&:hover .red {
background: red;
color: white;
border-radius: 0.25rem;
}
.replace-typo-other {
font-style: italic;
font-weight: bold;
}
}
#classes {
max-width: 40ch;
padding-top: 0;
}
.progressive-disclosure {
color: gray;
}
.center {
text-align: center;
}
.d-none {
display: none !important;
}
.red {
color: red;
}