main_web/count/style.css
2023-11-13 16:59:52 -05:00

40 lines
628 B
CSS
Executable File

body {
background-color: orange;
}
#main {
display: flex;
flex-direction: column;
justify-content: center;
width: 75%;
margin: auto;
}
button {
border: 2px;
background-color: aquamarine;
font-size: 3em;
width: 300px;
margin: auto;
border-color: black;
border-style: dashed;
}
#numDiv {
border: 5px;
text-align: center;
height: 100px;
background-color: blue;
color: white;
width: 150px;
margin: auto;
margin-top: 7%;
font-size: 4em;
vertical-align: middle;
}
#buttons {
display: flex;
margin: auto;
flex-direction: row;
}