-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (45 loc) · 735 Bytes
/
style.css
File metadata and controls
52 lines (45 loc) · 735 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
43
44
45
46
47
48
49
50
51
52
/*basic reset*/
* {
margin: 0;
padding: 0;
}
/*adding a black bg to the body to make things clearer*/
body {
background: black;
}
canvas {
display: block;
}
div#input {
width: 40%;
height: 50px;
position: fixed;
left: calc(30%);
top: calc(50% - 25px);
color: white;
background-color: black;
border: 1px solid #0F0;
}
div#input > * {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
div#input > .chevron {
position: relative;
margin-left: 5px;
font-family: monospace;
font-size: 44px;
}
div#input > input {
width: 90%;
height: 70%;
font-size: 34px;
margin-left: 15px;
background-color: black;
border: 0px;
color: #0F0;
outline: none !important;
font-family: monospace;
}