-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
63 lines (63 loc) · 1.33 KB
/
estilo.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
body{
font-family: Verdana;
font-size: 18pt;
background-color: #ffebcd;
}
#calculadora{
margin: 50px auto;
height: 210px;
padding: 15px;
width: 190px;
background-color: #3d4543;
border: 1px solid #222;
border-radius: 4px;
box-shadow: 0 0 5px #000;
padding-bottom: 15px;
}
.visor{
margin: 0 0 20px;
padding: 3px;
background-color: #222;
border-radius: 3px;
}
.visor_input{
display: block;
width: 90%;
height: 35px;
padding: 0 8px;
font-family: monospace;
color: #444;
text-align: right;
background-color: #bccd95;
border: 1px solid #222;
border-radius: 2px;
box-shadow: inset 0 2px 3px #000;
}
.calc_botao, .calc_botao_op, .calc_botao_fun, .cal_botao_res{
float: left;
padding: 0;
margin: 0 0 5px 7px;
width: 39px;
line-height: 23px;
color: white;
text-align: center;
text-decoration: none;
text-shadow: 0 1px #000;
background-color: #313131;
border: 1px solid #000;
border-radius: 3px;
cursor: pointer;
box-shadow: 1px 1px 1px #000;
}
.calc_botao:active{
background-color: #282828;
}
.calc_botao_op{
background-color: #ff4561;
}
.calc_botao_fun{
background-color: #6f6f6f;
}
.cal_botao_res{
background-color: #ffa70c;
}