Theme update
This commit is contained in:
parent
30e8c6c12b
commit
bdbb29d6a3
|
@ -1,8 +1,11 @@
|
||||||
@import 'responsive'
|
@import 'responsive'
|
||||||
|
@import 'anim'
|
||||||
|
|
||||||
$primary-color: #F5A9B8
|
$primary-color: #f4b7c3
|
||||||
$secondary-color: #FFFFFF
|
$secondary-color: #f4e8b7
|
||||||
|
$tertiary-color: #b7c3f4
|
||||||
$outer-bg: #091519
|
$outer-bg: #091519
|
||||||
|
//$outer-bg: #f2e1ba // nice sand color, light theme maybe?
|
||||||
$inner-bg: #112932
|
$inner-bg: #112932
|
||||||
|
|
||||||
@mixin div-center()
|
@mixin div-center()
|
||||||
|
@ -12,6 +15,9 @@ $inner-bg: #112932
|
||||||
flex-direction: column
|
flex-direction: column
|
||||||
align-content: center
|
align-content: center
|
||||||
|
|
||||||
|
*
|
||||||
|
border-color: $tertiary-color
|
||||||
|
|
||||||
body
|
body
|
||||||
@include div-center()
|
@include div-center()
|
||||||
width: 100%
|
width: 100%
|
||||||
|
@ -33,7 +39,7 @@ body
|
||||||
|
|
||||||
opacity: 0.03
|
opacity: 0.03
|
||||||
z-index: 1
|
z-index: 1
|
||||||
background-image: url('/img/noise.gif')
|
background-image: url('../img/noise.gif')
|
||||||
background-size: 25%
|
background-size: 25%
|
||||||
|
|
||||||
@include mobile()
|
@include mobile()
|
||||||
|
@ -51,6 +57,7 @@ body
|
||||||
|
|
||||||
.contentholder
|
.contentholder
|
||||||
justify-content: flex-start
|
justify-content: flex-start
|
||||||
|
overflow: scroll
|
||||||
div
|
div
|
||||||
width: 30rem
|
width: 30rem
|
||||||
margin: 1% 0
|
margin: 1% 0
|
||||||
|
@ -65,21 +72,27 @@ body
|
||||||
.content
|
.content
|
||||||
z-index: 100
|
z-index: 100
|
||||||
|
|
||||||
|
.returnLink *
|
||||||
|
margin: 3% 0
|
||||||
|
font-size: large
|
||||||
|
|
||||||
|
|
||||||
h1
|
h1
|
||||||
color: $primary-color
|
color: $primary-color
|
||||||
font-family: serif
|
font-family: serif
|
||||||
font-size: xx-large
|
font-size: xxx-large
|
||||||
margin: 5px 5px
|
margin: 5px 5px
|
||||||
text-align: center
|
text-align: center
|
||||||
|
|
||||||
h2
|
h2
|
||||||
color: $secondary-color
|
color: $secondary-color
|
||||||
font-family: serif
|
font-family: serif
|
||||||
font-size: medium
|
font-size: large
|
||||||
margin-top: -8px
|
|
||||||
text-align: center
|
text-align: center
|
||||||
|
|
||||||
|
h3
|
||||||
|
color: $secondary-color
|
||||||
|
font-size: large
|
||||||
|
|
||||||
p
|
p
|
||||||
color: $secondary-color
|
color: $secondary-color
|
||||||
|
@ -90,12 +103,36 @@ p
|
||||||
|
|
||||||
ol
|
ol
|
||||||
margin: 0px 0px
|
margin: 0px 0px
|
||||||
|
list-style-type: decimal
|
||||||
|
|
||||||
li
|
ul
|
||||||
@extend p
|
|
||||||
list-style-type: none
|
list-style-type: none
|
||||||
|
li
|
||||||
&:before
|
&:before
|
||||||
content: "- "
|
content: "- "
|
||||||
|
|
||||||
|
li
|
||||||
|
@extend p
|
||||||
|
|
||||||
a
|
a
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
|
&:link
|
||||||
|
color: $secondary-color
|
||||||
|
&:visited
|
||||||
|
color: $secondary-color
|
||||||
|
|
||||||
|
header
|
||||||
|
margin: 1% 0 1% 0
|
||||||
|
|
||||||
|
border-style: solid
|
||||||
|
border-width: 0px 0px 2px 0px
|
||||||
|
|
||||||
|
h2
|
||||||
|
margin: 0
|
||||||
|
margin-top: -8px
|
||||||
|
|
||||||
|
article
|
||||||
|
margin: 3% 0
|
||||||
|
|
||||||
|
border-style: solid
|
||||||
|
border-width: 0px 0px 2px 0px
|
||||||
|
|
Loading…
Reference in New Issue