GrassClipper/resources/style/index.css
2022-04-19 17:07:56 -07:00

55 lines
830 B
CSS

body {
overflow: none;
height: 85vh;
}
.playBtn:hover, .smolBtn:hover {
cursor: pointer;
}
.playBtn {
padding: 0 30px;
border-radius: 5px;
border: none;
background: linear-gradient(#ffd326, #ffc61e);
color: #704a1d;
font-weight: bold;
height: 50px;
font-size: 20px;
}
.smolBtn {
padding: 0 20px;
border-radius: 5px;
border: none;
background: linear-gradient(#ffd326, #ffc61e);
color: #704a1d;
font-weight: bold;
height: 40px;
font-size: 14px;
}
#bottomBar {
display: flex;
justify-content: center;
width: 100%;
padding: 20px 0px;
}
#halvesContainer {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
display: flex;
}
#firstHalf, #secondHalf {
display: flex;
justify-content: center;
width: 100%;
}
#firstHalf {
border-right: 1px solid black;
}