-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculadoraMilan.css
68 lines (67 loc) · 1.78 KB
/
CalculadoraMilan.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
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(8,auto);
grid-gap:10px;
background-color: rgb(17, 221, 221);
color:black;
border-radius: 1em;
}
body>form>:first-of-type{
grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 1;
grid-row-end: 2;
padding: 1em;
font-size: 2em;
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[value="+"]{
grid-row-start: 5;
grid-row-end: 7;
grid-column-start: 4;
grid-column-end: 5;
}
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: 25px;
}
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 = "8" ],
body>form>input[type = button][value = "." ],
body>form>input[type = button][value = "9" ],
body>form>input[type = button][value = "=" ] {
color: black;
background-color: aliceblue;
}