work-sample/src/App.css

79 lines
1017 B
CSS
Raw Normal View History

2022-12-08 18:11:44 -08:00
html {
height: 100%;
}
body {
height: 100%;
font-family: Lato, "Helvetica Neue", sans-serif;
}
div#root {
height: 100%;
color: white;
}
2022-12-07 18:34:36 -08:00
.App {
2022-12-08 18:11:44 -08:00
display: grid;
grid-template-columns: 20% auto;
height: 100%;
2022-12-07 18:34:36 -08:00
}
2022-12-08 18:11:44 -08:00
.sidebar {
grid-column: 1;
background-color: #5a6066;
text-align: center;
border-right: #8b8b8a;
2022-12-07 18:34:36 -08:00
}
2022-12-08 18:11:44 -08:00
.connectorButton {
}
main.main {
background-color: black;
grid-column: 2;
padding: 10px;
}
.airdropPanel {
display: grid;
grid-template-columns: 30% auto;
}
.airdropSettings {
grid-column: 1;
2022-12-07 18:34:36 -08:00
}
2022-12-08 18:11:44 -08:00
.addressList {
grid-column: 2;
}
2022-12-07 18:34:36 -08:00
.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);
}
}
2022-12-07 18:55:13 -08:00
div.addressError {
2022-12-08 18:11:44 -08:00
background-color: #c52121;
2022-12-07 18:55:13 -08:00
}