website: add website deploy, tweak fonts
This commit is contained in:
parent
263db8ead6
commit
b30c17a499
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get the parent directory of where this script is.
|
||||||
|
SOURCE="${BASH_SOURCE[0]}"
|
||||||
|
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
||||||
|
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
||||||
|
|
||||||
|
# Change into that directory
|
||||||
|
cd $DIR
|
||||||
|
|
||||||
|
# Push the subtree (force)
|
||||||
|
git push heroku `git subtree split --prefix website master`:master --force
|
|
@ -8,7 +8,6 @@
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
.anti-alias()
|
|
||||||
color: @black;
|
color: @black;
|
||||||
background-color: @black;
|
background-color: @black;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
|
|
|
@ -22,9 +22,9 @@
|
||||||
p{
|
p{
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-family: @font-family-lato;
|
font-family: @font-family-lato;
|
||||||
font-weight: @font-weight-lato-sb;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icn{
|
.icn{
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
p{
|
p{
|
||||||
text-align: right;
|
text-align: right;
|
||||||
padding-left: 120px;
|
padding-left: 120px;
|
||||||
font-weight: 100;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
.it-icon{
|
.it-icon{
|
||||||
|
@ -256,7 +256,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
color: @gray-light;
|
color: @gray-light;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
|
@ -688,7 +688,7 @@ body.page-home #footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
font-weight: 300;
|
font-weight: 100;
|
||||||
-webkit-transform: translate3d(0, 0, 0);
|
-webkit-transform: translate3d(0, 0, 0);
|
||||||
-moz-transform: translate3d(0, 0, 0);
|
-moz-transform: translate3d(0, 0, 0);
|
||||||
-ms-transform: translate3d(0, 0, 0);
|
-ms-transform: translate3d(0, 0, 0);
|
||||||
|
@ -1021,7 +1021,7 @@ body.page-home #footer {
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
font-weight: 500;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
.feature .icn {
|
.feature .icn {
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -1089,7 +1089,7 @@ body.page-home #footer {
|
||||||
#feature-iterate p {
|
#feature-iterate p {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
padding-left: 120px;
|
padding-left: 120px;
|
||||||
font-weight: 100;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
#feature-iterate .it-icon {
|
#feature-iterate .it-icon {
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
|
|
Loading…
Reference in New Issue