Skip to content

Commit

Permalink
CSS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benwerd committed Oct 29, 2014
1 parent b5e9470 commit 29aa367
Show file tree
Hide file tree
Showing 4 changed files with 466 additions and 333 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.elasticbeanstalk/

.idea/
7 changes: 3 additions & 4 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
src: url('../fonts/lato-regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/lato-regular.woff') format('woff'),
url('../fonts/lato-regular.ttf') format('truetype'),
url('../fonts/lato-regular.svg#LatoRegular') format('svg');
/*url('../fonts/lato-regular.svg#LatoRegular') format('svg');*/
font-weight: normal;
font-style: normal;

Expand All @@ -42,7 +42,7 @@
src: url('../fonts/lato-bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/lato-bold.woff') format('woff'),
url('../fonts/lato-bold.ttf') format('truetype'),
url('../fonts/lato-bold.svg#LatoBold') format('svg');
/*url('../fonts/lato-bold.svg#LatoBold') format('svg');*/
font-weight: normal;
font-style: normal;

Expand Down Expand Up @@ -383,7 +383,6 @@ header ul.social li a.gplus{
width: 50%;
height: 405px;
float: left;
background: url('../img/info_img.jpg') no-repeat;

background-size: cover;
-webkit-background-size: cover;
Expand Down Expand Up @@ -530,4 +529,4 @@ a{


::selection {color:#ffffff;background:#353434;}
::-moz-selection {color:#ffffff;background:#353434;
::-moz-selection {color:#ffffff;background:#353434;}
32 changes: 27 additions & 5 deletions css/main_responsive.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
src: url('../fonts/lato-regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/lato-regular.woff') format('woff'),
url('../fonts/lato-regular.ttf') format('truetype'),
url('../fonts/lato-regular.svg#LatoRegular') format('svg');
/*url('../fonts/lato-regular.svg#LatoRegular') format('svg');*/
font-weight: normal;
font-style: normal;

Expand All @@ -19,7 +19,7 @@
src: url('../fonts/lato-bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/lato-bold.woff') format('woff'),
url('../fonts/lato-bold.ttf') format('truetype'),
url('../fonts/lato-bold.svg#LatoBold') format('svg');
/*url('../fonts/lato-bold.svg#LatoBold') format('svg');*/
font-weight: normal;
font-style: normal;

Expand Down Expand Up @@ -248,7 +248,7 @@ header ul.social li a.gplus{
margin-bottom: 20px;
color: #535353;
font-family: "lato_regular", arial;
font-size: 15px;
font-size: 0.9em;
line-height: 22px;

}
Expand Down Expand Up @@ -380,7 +380,6 @@ header ul.social li a.gplus{
width: 50%;
height: 405px;
float: left;
background: url('../img/info_img.jpg') no-repeat;

background-size: cover;
-webkit-background-size: cover;
Expand Down Expand Up @@ -455,6 +454,7 @@ header ul.social li a.gplus{
font-weight: lighter;
letter-spacing: 1px;
margin-bottom: 20px;
margin-top: -20px;
}

.cta p{
Expand Down Expand Up @@ -666,7 +666,10 @@ a{

/* Extra */

.content {display:none;}
.content {
display:none;
padding-top: 1em;
}

.frame {
background-color: #d0e2f5;
Expand Down Expand Up @@ -698,3 +701,22 @@ input, button, select, textarea {
text-transform: uppercase;
}

form {
text-align: center;
}

form input[type=email] {
width: 50%;
padding: 0.25em !important;
font-size: 1.2em;
font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
}

form input[type=submit] {
font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
width: 150px;
padding: 5px;
border-radius: 5px;
background-color: #eee;
border: 0;
}
Loading

0 comments on commit 29aa367

Please sign in to comment.