-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (76 loc) · 1.54 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* from https://type-scale.com/ */
html {font-size: 100%;} /*16px*/
body {
background: white;
font-family: 'Krona One', sans-serif;
font-weight: 400;
line-height: 1.75;
color: #000000;
background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}
p {margin-bottom: 1rem;}
h1, h2, h3, h4, h5 {
margin: 3rem 0 1.38rem;
font-family: 'Krona One', sans-serif;
font-weight: 400;
line-height: 1.3;
}
h1 {
margin-top: 0;
font-size: 2.488rem;
}
h2 {font-size: 2.074rem;}
h3 {font-size: 1.728rem;}
h4 {font-size: 1.44rem;}
h5 {font-size: 1.2rem;}
small, .text_small {font-size: 0.833rem;}
body {
/* min-height: 100vh; */
max-width: 960px;
margin: 0 auto;
}
main {
margin-top: 1.2rem;
text-align: center;
}
.how {
text-align: center;
}
footer {
text-align: center;
margin-bottom: 1.2rem;
}
/* Buttons */
/*
adapted from
https://cssbuttons.io/detail/ke1221/ancient-walrus-24
*/
#upload {
display: none;
}
#button-area-top, #button-area-bottom {
display: flex;
}
button, .upload-label, canvas {
font-family: 'Krona One', sans-serif;
margin: 1.5rem;
border: 1px solid #e8e8e8;
color: #090909;
padding: 0.7em 1.7em;
font-size: 18px;
border-radius: 0.5em;
background: #e8e8e8;
transition: all .3s;
box-shadow: 6px 6px 12px #c5c5c5,
-6px -6px 12px #ffffff;
}
button:active {
color: #666;
box-shadow: inset 4px 4px 12px #c5c5c5,
inset -4px -4px 12px #ffffff;
}