forked from jdan/cleaver
-
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.
jdan#2 - stylesheet includes, with example
- Loading branch information
Showing
4 changed files
with
140 additions
and
2 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
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,16 @@ | ||
body { | ||
background-color: #666; | ||
color: #ddd; | ||
} | ||
|
||
#wrapper { | ||
box-shadow: 3px 3px 3px #000; | ||
} | ||
|
||
section { | ||
background-color: #333; | ||
} | ||
|
||
code { | ||
background-color: #777; | ||
} |
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,99 @@ | ||
body { | ||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | ||
color: #444; | ||
background-color: #aaa; | ||
} | ||
|
||
#wrapper { | ||
width: 850px; | ||
height: 600px; | ||
overflow: hidden; | ||
margin: 80px auto 0 auto; | ||
box-shadow: 3px 3px 3px #666; | ||
background-color: #eee; | ||
} | ||
|
||
section.slide { | ||
width: auto; | ||
height: 540px; | ||
padding: 30px; | ||
} | ||
|
||
section.slide.main h1.title { | ||
font-size: 100px; | ||
text-align: center; | ||
margin-top: 150px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
section.slide.main h2.subtitle { | ||
font-size: 30px; | ||
text-align: center; | ||
font-weight: 200; | ||
} | ||
|
||
section.slide.text h1.title { | ||
font-size: 45px; | ||
border-bottom: 1px solid #aaa; | ||
margin: 0; | ||
padding-bottom: 15px; | ||
} | ||
|
||
section.slide.text article.content { | ||
padding-top: 20px; | ||
font-weight: 200; | ||
font-size: 32px; | ||
line-height: 44px; | ||
} | ||
|
||
section.slide.list h1.title { | ||
font-size: 45px; | ||
border-bottom: 1px solid #aaa; | ||
margin: 0; | ||
padding-bottom: 15px; | ||
} | ||
|
||
section.slide.list ul.items { | ||
padding: 20px 0 0 60px; | ||
font-weight: 200; | ||
font-size: 32px; | ||
line-height: 44px; | ||
} | ||
|
||
section.slide.author h1.name { | ||
font-size: 55px; | ||
font-weight: 200px; | ||
text-align: center; | ||
margin-top: 135px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
section.slide.author h3 { | ||
font-weight: 100; | ||
text-align: center; | ||
font-size: 30px; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: #44a4dd; | ||
} | ||
|
||
a:hover { | ||
color: #66b5ff; | ||
} | ||
|
||
code { | ||
background-color: #ccc; | ||
} | ||
|
||
pre { | ||
padding: 10px; | ||
font-size: 20px; | ||
line-height: 28px; | ||
} | ||
|
||
.hidden { | ||
display: none; | ||
} | ||
|
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