-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (48 loc) · 862 Bytes
/
style.css
File metadata and controls
53 lines (48 loc) · 862 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
53
*{
padding: 0;
margin: 0;
user-select: none;
box-sizing: border-box;
}
body{
background-color: tan;
}
p#digital{
text-align: center;
border: 2px solid black;
border-radius: 25%;
font-size: 2rem;
margin-top: 10px;
background-color: darkcyan;
}
div#buttons{
position: absolute;
left: 50%;
transform: translate(-50%, 0);
margin-top: 1%;
width: 100%;
max-width: 100%;
display: flex;
justify-content: center;
}
button{
font-size: 2rem;
width: 33%;
border-radius: 5px;
}
button:hover{
background-color: #102030;
color: white;
}
#canvas{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 360px;
height: 360px;
border: 10px ridge green;
border-radius: 40px;
max-width: 100%;
max-height: 100%
}