mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
42 lines
675 B
SCSS
42 lines
675 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $primaryBlue;
|
|
transition: color 0.1s linear;
|
|
|
|
&:hover {
|
|
color: darken(white, 10%);
|
|
}
|
|
}
|
|
|
|
i {
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
body {
|
|
background-color: $gray1;
|
|
color: $white;
|
|
padding-left: $navbarWidth;
|
|
}
|
|
|
|
.Card {
|
|
background-color: $gray2;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.Card__header {
|
|
margin: -10px -10px 10px -10px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
height: 50px;
|
|
border-radius: 5px 5px 0 0;
|
|
font-size: 25px;
|
|
background-color: $gray3;
|
|
} |