calculator/css/style.css

45 lines
693 B
CSS
Raw Permalink Normal View History

2014-11-12 21:41:38 -05:00
canvas{
background-color: #ffffff;
}
body{
background-color: #ddd;
overflow-x: hidden;
}
#screen{
position: absolute;
top: 0px;
height: 100%;
z-index: -1;
2014-11-13 07:50:35 -05:00
margin-left: -8px;
2014-11-12 21:41:38 -05:00
}
#front{
2014-11-13 14:12:21 -05:00
margin-top: 100px;
/*left: 50%;*/
2014-11-12 21:41:38 -05:00
text-align: center;
2014-11-13 14:12:21 -05:00
margin-left: auto;
margin-right:auto;
width: 300px;
2014-11-12 21:41:38 -05:00
font-family: 'Roboto Slab', serif;
background-color: white;
}
2014-11-13 14:12:21 -05:00
.eq, #result,input,p{
display: inline;
margin:0px;
padding:0px;
}
#front{
width: 250px;
margin-left:auto;
margin-right:auto;
margin-top: 20px;
border: 2px solid #a1a1a1;
padding: 10px 40px;
background: #dddddd;
border-radius: 25px;
}
#calculator input, #calculator p{
width: 100%;
}
.sub{
font-weight: bold;
2014-11-12 21:41:38 -05:00
}