-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
139 lines (121 loc) · 2.45 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
html {
box-sizing: border-box;
font-size: 62.5%;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
font-size: 1.6rem;
font-family: 'Montserrat', Arial, sans-serif;
color: #1A2A32;
}
img {
max-width: 100%;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
/*
$$\ $$\ $$\
$$$\ $$$ | \__|
$$$$\ $$$$ | $$$$$$\ $$\ $$$$$$$\
$$\$$\$$ $$ | \____$$\ $$ |$$ __$$\
$$ \$$$ $$ | $$$$$$$ |$$ |$$ | $$ |
$$ |\$ /$$ |$$ __$$ |$$ |$$ | $$ |
$$ | \_/ $$ |\$$$$$$$ |$$ |$$ | $$ |
\__| \__| \_______|\__|\__| \__|*/
aside {
width: 20vw;
max-width: 300px;
height: 100vh;
background: #EEF3F6;
position: fixed;
top: 0;
left: 0;
padding: 32px 16px 0;
transition: all ease-in-out .3s;
}
aside.hidden {
left: -300px;
}
aside > svg {
width: 20px;
position: absolute;
top: 16px;
right: 16px;
cursor: pointer;
}
aside ul {
list-style: none;
display: flex;
flex-flow:column nowrap;
justify-content: center;
align-items: center;
padding: 0;
}
aside ul li {
margin: 8px 0;
}
.btn {
border: none;
background: hsl(202, 32%, 50%);
padding: 6px 16px;
color: #fff;
border-radius: 4px;
cursor: pointer;
transition: all ease-in-out .3s;
}
.btn:hover {
background: hsl(202, 32%, 30%);
}
.input {
display: flex;
flex-flow:row wrap;
justify-content: space-around;
align-items: center;
width: 100%;
}
.input input {
width: 30%;
}
.download {
position: absolute;
bottom: 16px;
left: 50%;
transform: translateX(-50%);
text-decoration: none;
width: fit-content;
}
main {
width: 100vw;
height: 100vh;
display: grid;
place-items: center;
}
.burger {
position: absolute;
top: 32px;
left: 32px;
width: 20px;
}
.burger.hidden {
display: none;
}
canvas {
border: 1px solid #1A2A32;
max-width: 98vw;
max-height: 98vh;
}
/*
$$$$$$$$\ $$\
$$ _____| $$ |
$$ | $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
$$$$$\ $$ __$$\ $$ __$$\\_$$ _| $$ __$$\ $$ __$$\
$$ __|$$ / $$ |$$ / $$ | $$ | $$$$$$$$ |$$ | \__|
$$ | $$ | $$ |$$ | $$ | $$ |$$\ $$ ____|$$ |
$$ | \$$$$$$ |\$$$$$$ | \$$$$ |\$$$$$$$\ $$ |
\__| \______/ \______/ \____/ \_______|\__| */