-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (69 loc) · 1.18 KB
/
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
68
69
body {
margin: 0;
font-family: Roboto, sans-serif;
}
header, main, footer {
max-width: 800px;
padding: 1em;
margin: auto;
}
nav {
text-align: right;
}
h1,h2,h3,strong,b {
font-weight: 500;
}
hr {
height: 3px;
background-color: #e8e8e8;
border: none;
outline: none;
margin: 3em;
}
#results, #exported-wrapper {
display: none;
}
#results.done, #exported-wrapper.open {
display: block;
}
#before, #after {
padding: 1em;
max-width: 100%;
overflow-x: auto;
text-align: center;
background: linear-gradient(150deg, #70b4a9, #6fbab9, #6ea6c8, #6f78d9, #ae73e9, #f579f1, #fd7ec7, #ff81b6);
}
#before img, #after canvas {
filter: drop-shadow(2px 4px 6px #444);
}
#before img {
max-width: 50%;
vertical-align: middle;
}
#after canvas {
max-width: 100%;
vertical-align: middle;
}
#controls {
margin-bottom: 1em;
}
#size-input {
vertical-align: middle;
}
#output-wrapper {
max-width: 100%;
max-height: 70vh;
text-align: center;
overflow: auto;
}
footer .timestamp {
text-align: right;
color: #aaa;
font-size: 85%;
}
a[href] {
text-decoration: none;
}
a[href]:focus, a[href]:hover, a[href]:active, a[href]:focus-within {
text-decoration: underline;
}