1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-11 02:52:49 +00:00
This commit is contained in:
2017-10-16 23:05:44 -05:00
commit 3f49700225
24 changed files with 6120 additions and 0 deletions

4
app/scss/index.scss Normal file
View File

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

24
app/scss/style.scss Normal file
View File

@@ -0,0 +1,24 @@
html {
font-family: 'Roboto Condensed', sans-serif;
}
body {
color: $light-blue;
background-color: $dark-blue;
}
.fa {
margin-right: 5px;
margin-left: 5px;
}
a {
text-decoration: none;
color: $blue;
transition: all 0.1s linear;
cursor: pointer;
&:hover {
color: $blue--lighter;
}
}

10
app/scss/variables.scss Normal file
View File

@@ -0,0 +1,10 @@
// colors
$dark-blue: #1d2938;
$dark-blue--1: lighten(#1d2938, 5%);
$dark-blue--2: lighten(#1d2938, 10%);
$blue: #258de5;
$blue--lighter: saturate(lighten($blue, 10%), 100%);
$green: #39ce83;
$light-blue: #e9eef2;
$red: #e95779;
$white: #fff;