-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
44 lines (41 loc) · 996 Bytes
/
main.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #ffffff;
background-image: url("https://www.transparenttextures.com/patterns/textured-paper.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}
#info {
width: 20%;
padding: 20px;
margin-right: 20px;
border-right: 2px solid #ccc;
overflow-y: auto;
}
#container {
display: flex;
align-items: center;
}
h2 {
font-family: Arial, Helvetica, sans-serif;
font-weight: 800;
font-variant: small-caps;
font-stretch: ultra-expanded;
}
p {
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
font-stretch: semi-condensed;
}
canvas {
width: 750px; /* Visual size of the canvas */
height: 750px; /* Visual size of the canvas */
}
#backButton {
position: fixed;
top: 20px;
right: 20px;
}