-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (95 loc) · 1.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
width: 100vw;
height: 100vh;
background: rgb(78, 140, 165);
}
.container input {
width: 49%;
color: black;
}
.container__input-wrap {
width: 400px;
}
.container__action-wrap {
width: 400px;
}
#plus {
display: inline-block;
width: 49%;
height: 15px;
background: rgb(57, 197, 92);
border: 1px solid rgb(0, 255, 149);
border-radius: 15px;
color: black;
}
#plus:active {
transition: all .035s;
transform: translateY(1px);
}
#minus {
display: inline-block;
width: 50%;
height: 15px;
background: rgb(197, 57, 57);
border: 1px solid rgb(255, 0, 0);
border-radius: 15px;
color: black;
}
#minus:active {
transition: all .035s;
transform: translateY(1px);
}
#multiply {
display: inline-block;
width: 49%;
height: 15px;
background: rgb(57, 141, 197);
border: 1px solid rgb(0, 110, 255);
border-radius: 15px;
color: black;
}
#multiply:active {
transition: all .035s;
transform: translateY(1px);
}
#divide {
display: inline-block;
width: 50%;
height: 15px;
background: rgb(197, 132, 57);
border: 1px solid rgb(255, 174, 0);
border-radius: 15px;
color: black;
}
#divide:active {
transition: all .035s;
transform: translateY(1px);
}
#submit {
color: black;
width: inherit;
margin-bottom: 5px;
}
#result {
text-align: center;
padding-top: 15px;
color: green;
}
.result {
width: inherit;
height: 60px;
background: rgb(151, 221, 118);
border-radius: 20px;
}
.remainder {
display: none;
text-align: center;
margin: 5px;
font-size: 10px;
opacity: .45;
}