sass things being added to project
This commit is contained in:
parent
42275200db
commit
e1f223f233
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
|||||||
*swp
|
*swp
|
||||||
|
static/css/
|
||||||
|
2
website/.gitignore
vendored
2
website/.gitignore
vendored
@ -1,2 +1,4 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
target/
|
target/
|
||||||
|
static/css/
|
||||||
|
.sass-cache
|
@ -1,3 +1,5 @@
|
|||||||
|
$button_color_bg: #1f8dd6;
|
||||||
|
$button_color_txt: white;
|
||||||
* {
|
* {
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
@ -52,15 +54,15 @@ a {
|
|||||||
* I want my pure-button elements to look a little different
|
* I want my pure-button elements to look a little different
|
||||||
*/
|
*/
|
||||||
.pure-button {
|
.pure-button {
|
||||||
background-color: #1f8dd6;
|
background-color: $button_color_bg;
|
||||||
color: white;
|
color: $button_color_txt;
|
||||||
padding: 0.5em 2em;
|
padding: 0.5em 2em;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.pure-button-primary {
|
a.pure-button-primary {
|
||||||
background: white;
|
background: $button_color_bg;
|
||||||
color: #1f8dd6;
|
color: $button_color_txt;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
}
|
}
|
||||||
@ -71,7 +73,7 @@ a.pure-button-primary {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
.splash-container {
|
.splash-container {
|
||||||
background-image: url('/static/images/chalk.jpg');
|
background-image: url('https://www.shockrah.shop/static/images/chalk.jpg');
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
@ -151,7 +153,7 @@ a.pure-button-primary {
|
|||||||
|
|
||||||
/* This is the class used for the content sub-headers (<h3>) */
|
/* This is the class used for the content sub-headers (<h3>) */
|
||||||
.content-subhead {
|
.content-subhead {
|
||||||
color: #1f8dd6;
|
color: $button_color_txt;
|
||||||
}
|
}
|
||||||
.content-subhead i {
|
.content-subhead i {
|
||||||
margin-right: 7px;
|
margin-right: 7px;
|
Loading…
Reference in New Issue
Block a user