-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (40 loc) · 766 Bytes
/
style.css
File metadata and controls
44 lines (40 loc) · 766 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
#body{
background-image: url("images/background.gif");
height : 100%;
width : 100%;
margin: 0 0;
}
#screen{
text-align: center;
height : 100%;
width : 100%;
margin: 0 0;
}
#canvas{
margin: 0 0;
}
#top-left-btn-group{
text-align: left;
margin: 10px;
position: fixed;
}
#top-right-btn-group{
margin: 10px;
right: 0px;
text-align: right;
position: fixed;
}
button{
padding: 5px;
font-size: 20px;
background: rgba(29, 75, 241, 0.26);
border: 10px double var(--bs-btn-bg);
font-family: 'Space Mono', monospace;
font-weight: bold;
color: white;
opacity: 0.84;
}
button:hover {
background: rgba(29,76,241);
opacity: 1;
}