styles.css 373 Bytes
Newer Older
Silvia Barrientos committed
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



.calculadora {
    display: flex;
	justify-content: center;
	margin-top: 35px
}

button {
	margin: 2px 0px;
	padding: 15px 24px;
    font-size: 15px;
}


.teclas {
    display: grid;
    justify-content: center;
    width: 250px;
    background-color: black;
}


.pantalla {
    width: 220px;
    height: 100px;
    background-color: gray;
    border: 1px solid black;
}