-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate out some specific workshop classes.
The workshop template is mostly plain bootstrap, so getting it work alongside the site CSS seems mostly straightforward. We only need to add in a .workshop class to the body, and a .card class to the .container in the workshop. Everything else is bootstrap content. This commit also removes the banner.html include since this did not seem to be removed in the main site, but was referenced in the CSS. Removing it makes it clear the .banner class is only needed in the workshop, not here.
- Loading branch information
James Allen
committed
Jan 21, 2015
1 parent
7ea01bb
commit d848f51
Showing
2 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
body.workshop { | ||
background-color: #BEC3C6; | ||
margin: 20px 0; | ||
} | ||
|
||
.card { | ||
background-color: white; | ||
} | ||
|
||
/* Top banner of every page. */ | ||
div.banner { | ||
background-color: #FFFFFF; | ||
width: 100%; | ||
height: 90px; | ||
margin: 0px; | ||
padding: 0; | ||
border-bottom: 1px solid #A6A6A6; | ||
} | ||
|
||
/* Padding around image in top banner. */ | ||
div.banner a img { | ||
padding: 20px 25px; | ||
} | ||
|
||
/* Footer of every page. */ | ||
div.footer { | ||
clear: both; | ||
background: url("/img/main_shadow.png") repeat-x scroll center top #FFFFFF; | ||
padding: 4px 10px 7px 10px; | ||
border-top: 1px solid #A6A6A6; | ||
text-align: right; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters