estilo.css 452 Bytes
Newer Older
Javier Ferreira 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 31 32 33 34
.calculadora{
	display: block;
	margin:0 auto;
	padding: 20px;
	background: #DC4C46;
	width: 300px;
	height: 500px;
	border-radius: 25px;


}

.calculadora td button{
	display: block;
	width: 70px;
	height: 70px;
	font-size: 25px;
}

#resultado {
	display: block;
	text-align: center;
	font-size: 40px;
	margin-bottom: 50 px;
	width: 300px;
	height: 100px;
	line-height: 100px;
	background-color: #fff ;
	border-radius: 25px;
	overflow-y: scroll;

	

}