-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcounter.css
More file actions
64 lines (57 loc) · 1.13 KB
/
Copy pathcounter.css
File metadata and controls
64 lines (57 loc) · 1.13 KB
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
58
59
60
61
62
63
64
body {
background-color: dimgrey;
align-items: center;
display: block;
flex-direction: column;
display: flex;
gap: 5px;
max-height: fit-content;
}
.butt1 {
background-color: blanchedalmond;
height: 30px;
border-radius: 40px;
border-style: dotted;
padding: 60px;
align-items: center;
margin: 20px;
border-color: rgb(26, 142, 104);
cursor: pointer;
}
.butt2 {
background-color: rgb(154, 80, 27);
color: rgba(127, 255, 212, 0.959);
height: 40px;
border-radius: 40px;
border-style: ridge;
padding: 50px;
align-items: center;
margin: 20px;
border-color: rgb(103, 179, 254);
cursor: pointer;
}
.rest {
background-color: rgb(222, 79, 27);
color: rgb(162, 220, 162);
height: 30px;
border-radius: 40px;
border-style: dashed;
padding: 40px;
align-items: center;
margin: 20px;
border-color: khaki;
cursor: pointer;
transform: rotate3d(20);
}
#count{
color: aqua;
}
.cell{
color: aquamarine;
}
.rest:hover{
background-color: crimson;
color: blanchedalmond;
transition: 10.5sec;
text-transform: uppercase;
}