-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculadoraBasica.css
115 lines (90 loc) · 1.8 KB
/
CalculadoraBasica.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
112
113
114
115
/*001*/
body {
background-color: #FFE6A7;
}
/*001*/
h1 {
font-family: "Segoe UI", sans-serif;
font-size: 1.8em;
font-weight: 700;
line-height: 2em;
background-color: #6F1D1B;
color: white;
text-transform: uppercase;
padding-top: 3%;
padding-bottom: 3%;
text-align: center;
}
/*001*/
footer {
text-align: center;
}
/*001*/
form {
display: grid;
gap: 1em;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 5% 5% 14% 14% 14% 14% 14%;
width: 20em;
height: 25em;
margin: 0 auto;
background-color: #1F2E37;
padding: 1em;
border-radius: 1em;
}
/*011*/
input[type="text"] {
font-weight: 600;
font-size: 1.1em;
color: black;
background-color: #A6D090;
border-radius: 0.2em;
margin-top: 0.5em;
margin-bottom: 0.3em;
grid-column-start: 1;
grid-column-end: span 4;
grid-row-start: 1;
grid-row-end: 3;
}
/*001*/
label {
display: none;
}
/*011*/
input[type="submit"] {
text-decoration: none;
font-weight: 600;
font-size: 1.1em;
color: black;
background-color: #A9C2D1;
border-radius: 0.8em;
width: 90%;
height: 70%;
margin: 0 auto;
}
/*011*/
input[name="mrc"],
input[name="m+"],
input[name="m-"] {
text-decoration: none;
font-weight: 600;
font-size: 1.1em;
color: #ffffff;
background-color: #586A75;
border-radius: 0.8em;
width: 90%;
height: 70%;
margin: 0 auto;
}
/*011*/
input[name="operacion"] {
text-decoration: none;
font-weight: 600;
font-size: 1.1em;
color: black;
background-color: #ff0f0f;
border-radius: 0.8em;
width: 90%;
height: 70%;
margin: 0 auto;
}