-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEstilo.css
More file actions
94 lines (80 loc) · 1.76 KB
/
Estilo.css
File metadata and controls
94 lines (80 loc) · 1.76 KB
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
#contenedor{
display: flex;
margin-right: 25%;
}
#appCalculator{
height: 560px;
width: 300px;
background-color: #4d4d4d;
text-align: center;
margin: 0px auto;
margin-right: 120px;
}
#Titulo{
height: 500px;
width: 360px;
margin-left: -85px;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: medium;
text-align: center;
background-color: #1759e8;
}
#Historial{
height: 480px;
width: 360px;
text-align:justify;
margin: 0px auto;
background-color: #c1c4c9;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 28px;
}
#appCalculator form{
height: 100%;
width: 100%;
background-color: #464d4b;
}
#appCalculator input[type=text]{
height: 30px;
width: 270px;
cursor: default;
font-family: 'Roboto',sans-serif;
color: #c1c4c9;
padding: 15px;
text-align: right;
font-size: 50px;
border: 0;
outline:none;
background-color: #2d2e2d;
margin: 0%;
}
#appCalculator input[type=button]{
width: 22%;
cursor: pointer;
font-family: 'Roboto',sans-serif;
font-weight: bold;
font-size: 26px;
color: #1e1e1f;
padding: 18px;
margin: 3px;
border:0;
border-radius: 35%;
/*background-color: #a5a8ad*/
}
#appCalculator .Azul{
background-color: #1759e8;
}
#appCalculator .Gris{
background-color: #c1c4c9;
}
#appCalculator .Verde{
background-color: #b7f046;
}
#appCalculator .Azul:hover{
background-color: #468ff0;
}
#appCalculator .Gris:hover{
background-color: #777d85;
}
#appCalculator .Verde:hover{
background-color: #89c43b;
}