1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 17:42:48 +00:00

major file refactor - fix disconnecting bug

This commit is contained in:
2017-06-30 20:23:05 -05:00
parent 03fa82b2a2
commit de6332e89c
39 changed files with 73 additions and 28 deletions

View File

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

View File

@@ -0,0 +1,54 @@
* {
box-sizing: border-box;
}
a, .link {
text-decoration: none;
color: $primaryBlue;
transition: color 0.1s linear;
cursor: pointer;
&: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;
max-width: 800px;
padding: 10px;
margin-bottom: 20px;
border: 1px solid $gray3;
}
.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;
}
.column {
flex: 1;
& + .column {
margin-left: 10px;
}
}

View File

@@ -0,0 +1,13 @@
$navbarWidth: 200px;
// colors
$primaryBlue: #7289da;
$white: darken(white, 10%);
$gray1: #2e3136;
$gray2: #2a2d32;
$gray3: #23262a;
$gray4: #2e3136;
$gray5: #282b30;
$gray6: #1e2124;