-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (45 loc) · 873 Bytes
/
style.css
File metadata and controls
46 lines (45 loc) · 873 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
height: 100vh;
background: linear-gradient( to left, rgba(0, 255, 255, 0.356), rgba(236, 236, 18, 0.582));
}
section{
width: 20rem;
height: 20rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#display1{
border: 2px solid;
border-radius: 20px;
background: rgba(48, 47, 47, 0.664);
}
.box{
display: flex;
justify-content: center;
align-items: center;
}
.circle{
width: 3rem;
height: 3rem;
border-radius: 50%;
border: 2px solid yellow;
margin: 3px;
display: flex;
justify-content: center;
align-items: center;
}
.circle.active{
background-color: yellow;
color: aliceblue;
}