-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.css
More file actions
47 lines (43 loc) · 739 Bytes
/
interface.css
File metadata and controls
47 lines (43 loc) · 739 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
html, body{
margin: 0;
padding: 0;
}
div#main {
position: absolute;
margin: 0 auto;
top: 40%;
left: 47.5%;
}
div.mainContainer {
background-color: #666;
position: absolute;
width: 100%;
height: 100%;
}
div.solveButton {
background: yellow;
height: 50px;
width: 100px;
position: absolute;
margin: 0 auto;
transform: translate(-50%, -50%);
top: 80%;
left: 44.5%;
}
div.resetButton {
background: yellow;
height: 50px;
width: 100px;
position: absolute;
margin: 0 auto;
transform: translate(-50%, -50%);
top: 80%;
left: 57.5%;
}
div.circle {
position: absolute;
width: 100px;
height: 100px;
border: 2px solid black;
border-radius: 50%;
}