-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (57 loc) · 1.17 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background: linear-gradient(135deg, #8052ec, #d161ff);
}
.container {
width: 32em;
background-color: #ffffff;
padding: 5em;
border-radius: 0.6em;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
box-shadow: 0 1em 2em rgba(0, 0, 0, 0.25);
}
.wrapper {
display: flex;
align-content: center;
justify-content: space-between;
margin: 1em 0;
}
canvas {
border: 1px solid #000000;
border-radius: 0.4em;
}
button#reload-button {
font-size: 26px;
width: 4.6em;
background-color: #8052ec;
border: none;
border-radius: 0.4em;
color: #ffffff;
}
input[type="text"] {
font-family: "Roboto Mono", monospace;
font-size: 1.05em;
width: 100%;
padding: 1em 0.7em;
border: 1px solid #000000;
border-radius: 0.4em;
}
button#submit-button {
width: 100%;
background-color: #8052ec;
color: #ffffff;
font-size: 1.5em;
border: none;
margin-top: 1em;
padding: 0.8em 0;
border-radius: 0.4em;
font-family: "Roboto Mono", monospace;
}