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 {
|
||||
.anti-alias()
|
||||
color: @black;
|
||||
background-color: @black;
|
||||
font-size: 15px;
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
p{
|
||||
font-size: 16px;
|
||||
letter-spacing: 1px;
|
||||
line-height: 1.5em;
|
||||
line-height: 1.5em;
|
||||
font-family: @font-family-lato;
|
||||
font-weight: @font-weight-lato-sb;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.icn{
|
||||
|
@ -85,7 +85,7 @@
|
|||
p{
|
||||
text-align: right;
|
||||
padding-left: 120px;
|
||||
font-weight: 100;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.it-icon{
|
||||
|
@ -256,7 +256,7 @@
|
|||
margin-bottom: 0;
|
||||
font-size: 16px;
|
||||
letter-spacing: 1px;
|
||||
line-height: 1.5em;
|
||||
line-height: 1.5em;
|
||||
color: @gray-light;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
|
|
@ -688,7 +688,7 @@ body.page-home #footer {
|
|||
text-align: center;
|
||||
visibility: hidden;
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-weight: 300;
|
||||
font-weight: 100;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
-moz-transform: translate3d(0, 0, 0);
|
||||
-ms-transform: translate3d(0, 0, 0);
|
||||
|
@ -1021,7 +1021,7 @@ body.page-home #footer {
|
|||
letter-spacing: 1px;
|
||||
line-height: 1.5em;
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-weight: 500;
|
||||
font-weight: 300;
|
||||
}
|
||||
.feature .icn {
|
||||
display: block;
|
||||
|
@ -1089,7 +1089,7 @@ body.page-home #footer {
|
|||
#feature-iterate p {
|
||||
text-align: right;
|
||||
padding-left: 120px;
|
||||
font-weight: 100;
|
||||
font-weight: 300;
|
||||
}
|
||||
#feature-iterate .it-icon {
|
||||
margin-top: 40px;
|
||||
|
|
Loading…
Reference in New Issue