-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (43 loc) · 758 Bytes
/
style.css
File metadata and controls
50 lines (43 loc) · 758 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
.wrapper {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
width: 280px;
height: auto;
margin: 100px auto;
}
.form-wrap {
width: inherit;
background: whitesmoke;
padding: 10px 10px;
}
.form {
width: 245px;
padding: 10px 5px;
}
.button,
.button-digit {
border: 1px solid whitesmoke;
background: skyblue;
width: 70px;
cursor: pointer;
padding: 10px 0;
}
.button-reset {
border: 1px solid whitesmoke;
background: orange;
width: 280px;
cursor: pointer;
padding: 10px 0;
}
button:focus {
outline: none;
}
button:active {
transform: scale(1.1);
}
.button-reset:active {
transform: scale(1.03);
}