Remove background texture
This commit is contained in:
parent
08ff4b987e
commit
db53eeeff3
6 changed files with 9 additions and 9 deletions
|
@ -1380,7 +1380,7 @@ select:focus {
|
||||||
}
|
}
|
||||||
/* Page level layout styles */
|
/* Page level layout styles */
|
||||||
html {
|
html {
|
||||||
background: #ebebeb url(../img/background-light.jpg);
|
background-color: #ffffff;
|
||||||
font-family: 'PT Serif', serif;
|
font-family: 'PT Serif', serif;
|
||||||
font-color: #333332;
|
font-color: #333332;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
|
@ -1493,7 +1493,7 @@ html {
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
border: 20px solid transparent;
|
border: 20px solid transparent;
|
||||||
border-bottom-color: #ebebeb;
|
border-bottom-color: #ffffff;
|
||||||
}
|
}
|
||||||
.image-wrap img {
|
.image-wrap img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -1717,7 +1717,7 @@ html {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
padding-top: 2em;
|
padding-top: 2em;
|
||||||
padding-bottom: 3em;
|
padding-bottom: 3em;
|
||||||
background: #000000 url(../img/background-dark.png);
|
background-color: #000000;
|
||||||
}
|
}
|
||||||
.footer-wrap:before,
|
.footer-wrap:before,
|
||||||
.footer-wrap:after {
|
.footer-wrap:after {
|
||||||
|
|
|
@ -1737,7 +1737,7 @@ select:focus {
|
||||||
}
|
}
|
||||||
/* Page level layout styles ================================ */
|
/* Page level layout styles ================================ */
|
||||||
html {
|
html {
|
||||||
background: #ebebeb url(../img/background-light.jpg);
|
background-color: #ffffff;
|
||||||
font-family: 'PT Serif', serif;
|
font-family: 'PT Serif', serif;
|
||||||
font-color: #333332;
|
font-color: #333332;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
|
@ -1850,7 +1850,7 @@ html {
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
border: 20px solid transparent;
|
border: 20px solid transparent;
|
||||||
border-bottom-color: #ebebeb;
|
border-bottom-color: #ffffff;
|
||||||
}
|
}
|
||||||
.image-wrap img {
|
.image-wrap img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -2074,7 +2074,7 @@ html {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
padding-top: 2em;
|
padding-top: 2em;
|
||||||
padding-bottom: 3em;
|
padding-bottom: 3em;
|
||||||
background: #000000 url(../img/background-dark.png);
|
background-color: #000000;
|
||||||
}
|
}
|
||||||
.footer-wrap:before,
|
.footer-wrap:before,
|
||||||
.footer-wrap:after {
|
.footer-wrap:after {
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 9.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 54 KiB |
|
@ -1,5 +1,5 @@
|
||||||
html {
|
html {
|
||||||
background: @bodycolor url(../img/background-light.jpg);
|
background-color: @bodycolor;
|
||||||
font-family: @basefont;
|
font-family: @basefont;
|
||||||
font-color: @textcolor;
|
font-color: @textcolor;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
|
@ -259,7 +259,7 @@ html {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
padding-top: 2em;
|
padding-top: 2em;
|
||||||
padding-bottom: 3em;
|
padding-bottom: 3em;
|
||||||
background: @black url(../img/background-dark.png);
|
background-color: @black;
|
||||||
a,
|
a,
|
||||||
a:active,
|
a:active,
|
||||||
a:visited,
|
a:visited,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
@codefont: Monaco, Courier New, monospace;
|
@codefont: Monaco, Courier New, monospace;
|
||||||
|
|
||||||
// COLOR ====================================================
|
// COLOR ====================================================
|
||||||
@bodycolor : #ebebeb;
|
@bodycolor : #fff;
|
||||||
@textcolor : #333332;
|
@textcolor : #333332;
|
||||||
@basecolor : #343434;
|
@basecolor : #343434;
|
||||||
@compcolor : spin(@basecolor, 180);
|
@compcolor : spin(@basecolor, 180);
|
||||||
|
|
Loading…
Reference in a new issue