-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (54 loc) · 1.11 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
body{
padding: 0;
margin: 0;
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.background{
height: 300px;
width: 700px;
display: flex;
justify-content: space-around;
align-items: center;
border: 5px solid #212121;
transition: background-color 0.5s ease;
}
.blackbutton{
height: 100px;
width: 100px;
border: 2px solid #212121;
border-radius: 100%;
cursor: pointer;
background-color: black;
transition: transform 0.2s ease-in-out;
}
.yellowbutton {
height: 100px;
width: 100px;
border: 2px solid #212121;
border-radius: 100%;
cursor: pointer;
background-color: rgb(209, 254, 9);
transition: transform 0.2s ease-in-out;
}
.redbutton {
height: 100px;
width: 100px;
border: 2px solid #212121;
border-radius: 100%;
cursor: pointer;
background-color: rgb(255, 4, 21);
transition: transform 0.2s ease-in-out;
}
.blackbutton:hover{
transform: scale(1.2);
}
.yellowbutton:hover {
transform: scale(1.2);
}
.redbutton:hover {
transform: scale(1.2);
}