-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 713 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 713 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
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.number {
font-size: 50px;
}
.row {
margin-top: 15px;
}
.add {
background-color: green;
font-size: 40px;
width: 50px;
border-radius: 5px;
border: 0px solid;
cursor: pointer;
}
.subtract {
background-color: red;
font-size: 40px;
width: 50px;
border-radius: 5px;
border: 0px solid;
cursor: pointer;
}
.reset {
margin-top: 10px;
background-color: yellow;
font-size: 40px;
border-radius: 5px;
border: 1px solid black;
cursor: pointer;
}
.add:active {
background-color: lightgreen;
}
.subtract:active {
background-color: lightcoral;
}
.reset:active {
background-color: lightyellow;
}