-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (49 loc) · 866 Bytes
/
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
55
56
57
*{
font-family: "Roboto", sans-serif;
}
.wrapper {
width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.container {
width: 400px;
height: 400px;
border-radius: 30px;
background-color: rgb(162, 0, 255);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px
}
.container h3{
color: #ffffff;
}
.over_out_handler,
.enter_leave_handler,
.key_up_down_handler {
width: 80%;
height: 20%;
border-radius: 30px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.over_out_handler {
background-color: #ffa600;
}
.enter_leave_handler {
background-color: #0ff;
}
.key_up_down_handler {
background-color: chartreuse;
}
.click_handler{
background-color: rgb(255, 255, 255);
border-radius: 20px;
}