.cs-wrapper {
width: 100vw;
height: 100vh;
background-color: white;
}
.cs-buttons-table {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
.cs-buttons-list > li + li {
margin-top: 20px;
}
.cs-button {
overflow: hidden;
position: relative;
display: inline-block;
padding: 6px 10px;
border-radius: 4px;
background-color: orange;
background-image: -webkit-linear-gradient(top, #ffc04d, orange);
background-image: linear-gradient(to bottom, #ffc04d, orange);
font-family: monospace;
font-size: 28px;
text-decoration: none;
color: white;
-webkit-transition: opacity 300ms ease-in;