You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
563 B

@import './scss/variables.scss';
.app {
display: grid;
grid-template: auto 1fr auto / 1fr;
align-items: center;
h1 {
margin-top: 2.5vmin;
margin-bottom: 1vmin;
}
main {
height: 100%;
}
}
h1,
h2,
h3,
h4,
h5 {
color: $color-grey;
font-weight: 900;
margin: 0;
}
p {
margin: 0;
color: $color-grey;
}
a {
color: $color-primary;
&:hover {
color: lighen($color-primary, 1.5);
}
}
button {
border: 0;
padding: 0.25rem 0.5rem;
background: $color-primary;
color: $color-white;
}
input {
padding: 0.25rem;
}