1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-14 02:32:48 +00:00

styling changes - added font-awesome

This commit is contained in:
2017-02-04 04:03:49 +00:00
parent 8b24e8fe31
commit 946fdd1e80
21 changed files with 5136 additions and 34 deletions

View File

@@ -1,3 +1,4 @@
@import '../assets/normalize.css';
@import '../assets/font-awesome/css/font-awesome.css';
@import './variables.scss';
@import './style.scss';

View File

@@ -1,9 +1,46 @@
* {
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;
}
.content {
.Content {
padding: 10px;
}
.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;
}

View File

@@ -2,12 +2,12 @@ $navbarWidth: 200px;
// colors
$primaryBlue: #42adf4;
$primaryBlue: #7289da;
$white: darken(white, 10%);
$gray1: #686a6e;
$gray2: #424549;
$gray3: #36393e;
$gray1: #2e3136;
$gray2: #2a2d32;
$gray3: #282b30;
$gray4: #2e3136;
$gray5: #282b30;
$gray6: #1e2124;