-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 546 Bytes
/
style.css
File metadata and controls
46 lines (39 loc) · 546 Bytes
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
pre {
white-space: pre-wrap;
word-wrap: break-word;
}
.form {
display: flex;
flex-direction: column;
}
.note {
padding: 1em;
background: #164a5a;
border-radius: 1em;
margin-bottom: 1em;
animation: 500ms fade-in;
}
.result {
background: #0f0f0f;
padding: 1em;
border-radius: 1em;
margin-top: 0.5em;
animation: 200ms fade-in;
}
.result-good {
background: #1b5a16;
}
.result-bad {
background: #5a1616;
}
.hide {
display: none;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}