1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-09 08:32:48 +00:00
Files
go-discord-bot/client/app/scss/style.scss
2018-08-19 18:31:08 -05:00

68 lines
824 B
SCSS

@import './variables.scss';
@import './mixins.scss';
html {
font-family: 'Roboto', sans-serif;
}
* {
box-sizing: border-box;
}
a,
.link {
text-decoration: none;
color: $primaryBlue;
transition: color 0.1s linear;
cursor: pointer;
&:hover {
color: $white;
}
}
i {
margin-left: 5px;
margin-right: 5px;
}
body {
background-color: $gray1;
color: $white;
// padding-left: $navbarWidth;
}
.flex {
display: flex;
}
.content {
padding: 20px;
@include tinyScreen {
padding: 10px;
}
}
.input {
border-radius: 3px;
border: 1px solid $lightGray;
padding-left: 5px;
padding-right: 5px;
height: 30px;
background: $gray5;
color: $white;
}
.column {
flex: 1;
& + .column {
margin-left: 10px;
}
}
.text-wrap {
word-break: break-word;
word-wrap: break-word;
}