-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (57 loc) · 1.03 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
html,body{
font-family: 'Roboto Mono', monospace;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
display:flex;
flex-direction: column;
justify-content: center;
background-color: rgb(100,0,50);
align-items: center;
color: white;
text-shadow: rgba(0,0,0,1) 0px 0px 10px;
}
canvas {
border: 1px solid red;
width: 100vmin;
height: 100vmin;
}
.title{
margin:10px;
padding: 10px;
padding-top:0px;
position: absolute;
top:0;
left:0;
}
.settings {
position: absolute;
bottom:0;
left:0;
margin: 5px;
padding: 5px;
}
label{
margin: 5px;
padding: 5px;
font-family: 'Roboto Mono', monospace;
margin-right: 0;
color: white;
}
select {
margin: 5px;
padding: 5px;
font-family: 'Roboto Mono', monospace;
color: white;
background-color: rgba(0,0,0,0.5);
border: 1px solid red;
}
a{
color: white;
text-decoration: underline;
font-family: 'Roboto Mono', monospace;
font-size: 1.5em;
}