-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (51 loc) · 1.04 KB
/
style.css
File metadata and controls
55 lines (51 loc) · 1.04 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
body {
color: white;
font-family: 'Courier';
background-color: black;
width: 100%;
height: 100%;
margin: 0px;
border: 0;
overflow: hidden; /* Disable scrollbars */
display: block; /* No floating content on sides */
}
input {
border: 2px solid #006900;
border-radius: 4px;
top: 6.5%;
left: 50%;
width: 35em;
height: 2.5em;
transform: translate(-50%, -50%);
position: fixed;
font-size: 16px;
background-color: black;
color: white;
background-image: url('imgs/prompt/prompt_green.png');
background-position: 5px 5px;
background-repeat: no-repeat;
padding-left: 45px;
}
canvas {
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
position: fixed;
}
.container {
height: 200px;
position: relative;
border: 3px solid green;
}
.button {
background-color: black;
border: none;
font-family: 'Courier';
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 58px;
margin: 0;
}