-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (55 loc) · 997 Bytes
/
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
.calculator {
background: #f6f7f8;
border: 1px solid #e9eaed;
padding: 10px 10px 20px 20px;
font-family: roboto-h, sans-serif;
}
.calculator .row {
line-height: 50px;
}
.caption {
font-weight: 400;
min-width: 120px;
display: inline-block;
font-size: 16px;
}
.calculator input,
.calculator select {
width: auto;
line-height: 18px;
padding: 3px;
height: auto;
margin-top: 0;
text-align: center;
background-color: #fff;
border: 1px solid #ddd;
color: #333;
font-size: 14px;
font-weight: 400;
}
.rbtn label {
font-size: 14px;
font-weight: 400;
margin-right: 10px;
}
.calculator button {
padding: 10px 20px;
color: #fff;
cursor: pointer;
width: 160px;
text-transform: uppercase;
margin-top: 10px;
background-color: #a2cc41;
border: 0;
font-size: 16px;
font-weight: 700;
}
.rst {
border: 1px solid #ddd;
margin-top: 20px;
padding: 10px;
font-weight: 400;
font-size: 16px;
font-family: roboto-h, sans-serif;
display: none;
}