-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (53 loc) · 1.06 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'Montserrat', sans-serif;
margin: 0;
min-height: 100vh;
opacity: 80%;
}
canvas {
background-color: white;
}
.toolbox {
background-color: #175b72;
display: flex;
padding: 1rem;
width: 504px;
justify-content: center;
}
.toolbox > * {
background-color: #99617a;
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1rem;
padding: 0.25rem;
margin: 0.25rem;
height: 50px;
width: 50px;
color: white;
cursor: pointer;
opacity: 100%;
}
h1
{
float: center;
color: white;
font-family: "myFirstFont";
align-self: auto;
letter-spacing: 1rem;
font-size: 5rem;
font-weight:normal;
}
@font-face {
font-family: "myFirstFont";
src: url("font/Affectionately\ Yours\ -\ TTF.ttf");
}