work-sample/src/App.css

79 lines
1017 B
CSS

html {
height: 100%;
}
body {
height: 100%;
font-family: Lato, "Helvetica Neue", sans-serif;
}
div#root {
height: 100%;
color: white;
}
.App {
display: grid;
grid-template-columns: 20% auto;
height: 100%;
}
.sidebar {
grid-column: 1;
background-color: #5a6066;
text-align: center;
border-right: #8b8b8a;
}
.connectorButton {
}
main.main {
background-color: black;
grid-column: 2;
padding: 10px;
}
.airdropPanel {
display: grid;
grid-template-columns: 30% auto;
}
.airdropSettings {
grid-column: 1;
}
.addressList {
grid-column: 2;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
div.addressError {
background-color: #c52121;
}