-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (37 loc) · 697 Bytes
/
style.css
File metadata and controls
42 lines (37 loc) · 697 Bytes
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
*{margin: 0; padding: 0;}
body {
background: #171717;
position: relative;
}
#myCanvas {
position: absolute;
left: 5vw;
top: 5vh;
background: #1aa7f3;
border-radius: 5px;
}
div {
position: absolute;
/* width: calc(300px - 10px);
height: 500px; */
background: #333333;
color: azure;
right: 5vw;
top: 5vh;
padding: 10px;
border-radius: 8px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
p {
display: flex;
justify-content: space-evenly;
padding: 2px;
background: #222222;
}
button {
font-size: 12px;
width: 33px;
height: 18px;
cursor: pointer;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}