1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-09 16:42:48 +00:00
Files
go-discord-bot/client/app/scss/style.scss
2018-08-23 00:24:01 -05:00

74 lines
791 B
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;
}
.flex {
display: flex;
}
.flex--v-center {
align-items: center;
}
.content {
padding: 20px;
@include tinyScreen {
padding: 10px;
}
}
.column {
flex: 1;
& + .column {
margin-left: 10px;
}
}
.text-wrap {
word-break: break-word;
word-wrap: break-word;
}
.color {
&__red {
color: $red;
}
&__primary {
color: $primaryBlue;
}
}
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}