-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc.css
56 lines (49 loc) · 855 Bytes
/
calc.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
body {
background-color: #000;
}
body div.mycalc {
text-align: center;
width: 214px;
margin: 0 auto;
}
div input[type='button'], button {
width: 50px;
height: 50px;
margin: 2px 0;
}
div input[type="text"] {
height: 50px;
width: 100%;
background-color: #999;
color: #fff;
padding: 12px 20px;
margin-top: 100px;
margin-bottom: 4px;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid #777;
}
div.results input, div.results button {
height: 50px;
width: 104px;
}
div.results button {
background-color: red;
color: #fff;
border: 1px solid red;
}
div.results input {
background-color: #fd7202;
color: #fff;
border: 1px solid #fd7202;
}
#plus, #minus, #by, #devide, #percent {
background-color: green;
color: #fff;
border: 1px solid green;
font-size: 16px;
}
#Warning{
display: none;
color: red;
}