-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
basic template for React App + bulma + sass
- Loading branch information
Showing
5 changed files
with
607 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
@charset "utf-8"; | ||
@import url('https://fonts.googleapis.com/css?family=Baloo+Bhaijaan:400,700|Exo+2:400,700'); | ||
|
||
|
||
// ********************************** | ||
// overwrites | ||
// ********************************** | ||
// Core Variables | ||
$info: #413594 | ||
$success: #20BC44 | ||
$family-sans-serif: 'Exo 2', sans-serif | ||
|
||
$base-col: #2e4e72 | ||
$accent-col-1: #c6dc94 | ||
$accent-col-2: #54b276 | ||
|
||
$input-background-color: transparent | ||
$input-color: white | ||
$input-focus-border-color: white | ||
$input-border-color: rgba(255,255,255,0.5) | ||
|
||
$footer-background-color: #253548 | ||
|
||
$switch-background: rgba(255,255,255,0.1) | ||
|
||
|
||
@import "../node_modules/bulma/bulma.sass" | ||
@import "../node_modules/bulma-switch/src/sass/index.sass" | ||
|
||
|
||
$dottedlinecolor: rgba(0,0,0,0.3) | ||
|
||
html | ||
background-color: $base-col | ||
font-family: 'Baloo Bhaijaan', cursive | ||
|
||
a:hover | ||
color:white | ||
|
||
.subtitle | ||
opacity: .7 | ||
|
||
.setting | ||
border-top: 1px dashed $dottedlinecolor | ||
box-sizing:border-box | ||
padding-top: 40px | ||
margin: 50px 0 | ||
|
||
.setting input | ||
margin-top: 15px | ||
outline:none | ||
|
||
.help | ||
margin-top: 10px | ||
font-weight: bold | ||
|
||
|
||
.footer .content p | ||
opacity: .25 | ||
|
||
|
||
.buttons | ||
margin-top: 10vh | ||
|
||
|
||
.set_setting | ||
border-top: 1px dashed $dottedlinecolor | ||
box-sizing:border-box | ||
padding-top: 2vh | ||
margin: 3vh 0 | ||
|
||
.changebtn | ||
margin-top: 4vh | ||
|
||
.switch_w_options | ||
margin-top: 10px | ||
|
||
|
||
.spacer | ||
height: 15px | ||
width: 100% |
Oops, something went wrong.