-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (73 loc) · 1.21 KB
/
styles.css
File metadata and controls
81 lines (73 loc) · 1.21 KB
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #06090f;
}
.container {
width: 100%;
max-width: 600px;
padding: 1rem;
display: flex;
flex-direction: column;
align-items: center;
color: #fafafa;
}
.title {
width: 100%;
text-align: center;
margin-bottom: 0.5rem;
font-size: 4rem;
line-height: 4.25rem;
font-weight: bold;
}
.subtitle {
width: 100%;
text-align: center;
margin-bottom: 3rem;
font-size: 1.125rem;
line-height: 1.25rem;
font-weight: 500;
width: 90%;
opacity: 0.7;
}
#result {
font-size: 1.25rem;
font-weight: 500;
text-align: center;
}
#p5Canvas {
margin-bottom: 2rem;
}
#defaultCanvas0 {
border-radius: 0.5rem;
}
#deleteBtn {
border: none;
outline: none;
cursor: pointer;
background-color: transparent;
padding: 0.25rem 1rem;
border: 2px solid #f27503;
font-size: 1.5rem;
font-weight: bold;
width: 200px;
color: #f27503;
border-radius: 0.25rem;
}