-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculadoraCientifica.css
66 lines (64 loc) · 1.73 KB
/
CalculadoraCientifica.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
body{
display: grid;
grid-template-columns: repeat(1, auto);
grid-auto-rows: repeat(2,auto);
background-color: azure;
color: black;
}
h1{
text-align: center;
}
body>form{
display:grid;
grid-template-columns: repeat(5,auto);
grid-template-rows: repeat(7,auto);
grid-gap:10px;
background-color: rgb(17, 221, 221);
color:black;
}
body>form>input[type="text"]{
grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 1;
grid-row-end: 2;
padding: 1em;
font-size: 1em;
text-align: center;
height: 70px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
border-radius: 1em;
background-color: rgb(236, 245, 245);
color:black
}
body>form>input[type="button"]{
background-color:rgb(170, 184, 184);
border-radius: 1em;
margin-left: 10px;
font-size: 2em;
color:black;
margin-left: 5px;
margin-right: 5px;
margin-top: 10px;
margin-bottom: 10px;
}
body>form>input[type = button][value = "DEG" ],
body>form>input[type = button][value = "HYP" ],
body>form>input[type = button][value = "F-E" ] {
color:black;
background-color:rgb(151, 177, 177);
}
body>form>input[type = button][value = "0" ],
body>form>input[type = button][value = "1" ],
body>form>input[type = button][value = "2" ],
body>form>input[type = button][value = "3" ],
body>form>input[type = button][value = "4" ],
body>form>input[type = button][value = "5" ],
body>form>input[type = button][value = "6" ],
body>form>input[type = button][value = "7" ],
body>form>input[type = button][value = "8" ],
body>form>input[type = button][value = "9" ] {
color: black;
background-color: aliceblue;
}