1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00
acronomy/static/scss/_basestyle.scss
2020-07-22 16:16:40 +02:00

52 lines
601 B
SCSS

html {
height: 100%;
}
body {
display: flex;
flex-direction: column;
height: 100%;
> .container {
flex: 1 0 auto;
}
}
h1 {
text-align: center;
}
h1.acronym {
font-size: 4rem;
}
.fullName {
text-align: center;
font-size: 2rem;
.al {
transition: color .2s, text-decoration-color .2s;
text-decoration-line: underline;
text-decoration-color: white;
}
&:hover {
.al {
color: green;
text-decoration-color: green;
}
}
}
.aotd, .popular {
flex-direction: column;
}
.cardrow, #autocomplete, .form-group {
margin-bottom: 2rem;
}