-
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.
- Loading branch information
Showing
23 changed files
with
27,961 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
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,120 @@ | ||
/* Remark theme - modified by emchateau */ | ||
|
||
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz); | ||
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic); | ||
@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic); | ||
|
||
body { | ||
background-image: url('image/logo-ecole-nationale-des-chartes.png'); | ||
font-family: 'Droid Serif'; | ||
} | ||
h1, h2, h3 { | ||
font-family: 'Yanone Kaffeesatz'; | ||
font-weight: normal; | ||
} | ||
.remark-code, .remark-inline-code { | ||
font-family: 'Ubuntu Mono'; | ||
} | ||
|
||
.remark-slide-content h1 { font-size: 3em; } | ||
.remark-slide-content h2 { font-size: 2em; } | ||
.remark-slide-content h3 { font-size: 1.6em; } | ||
.footnote { | ||
position: absolute; | ||
bottom: 3em; | ||
} | ||
li p { line-height: 1.25em; } | ||
.red {color: #f92f5b } | ||
.large { font-size: 2em; } | ||
a, a > code { | ||
color: #f92f5b; | ||
text-decoration: none; | ||
} | ||
code { | ||
-moz-border-radius: 5px; | ||
-web-border-radius: 5px; | ||
background: #e7e8e2; | ||
border-radius: 5px; | ||
} | ||
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; | ||
font-size: 1em} | ||
.remark-code-line-highlighted { background-color: #373832; } | ||
.pull-left { | ||
float: left; | ||
width: 47%; | ||
} | ||
.pull-right { | ||
float: right; | ||
width: 47%; | ||
} | ||
.pull-right ~ p { | ||
clear: both; | ||
} | ||
#slideshow .slide .content code { | ||
font-size: 0.8em; | ||
} | ||
#slideshow .slide .content pre code { | ||
font-size: 0.9em; | ||
padding: 15px; | ||
} | ||
.inverse { | ||
// background: #272822; | ||
background: #fbf8f4; | ||
color: #272822; | ||
text-shadow: 0 0 6px #333; | ||
} | ||
.inverse h1, .inverse h2 { | ||
color: #f3f3f3; | ||
line-height: 0.8em; | ||
} | ||
|
||
/* Slide-specific styling */ | ||
#slide-inverse .footnote { | ||
bottom: 12px; | ||
left: 20px; | ||
} | ||
#slide-how .slides { | ||
font-size: 0.9em; | ||
position: absolute; | ||
top: 151px; | ||
right: 140px; | ||
} | ||
#slide-how .slides h3 { | ||
margin-top: 0.2em; | ||
} | ||
#slide-how .slides .first, #slide-how .slides .second { | ||
padding: 1px 20px; | ||
height: 90px; | ||
width: 120px; | ||
-moz-box-shadow: 0 0 10px #777; | ||
-webkit-box-shadow: 0 0 10px #777; | ||
box-shadow: 0 0 10px #777; | ||
} | ||
#slide-how .slides .first { | ||
background: #fff; | ||
position: absolute; | ||
top: 20%; | ||
left: 20%; | ||
z-index: 1; | ||
} | ||
#slide-how .slides .second { | ||
position: relative; | ||
background: #fff; | ||
z-index: 0; | ||
} | ||
|
||
/* Two-column layout */ | ||
.left-column { | ||
color: #777; | ||
width: 20%; | ||
height: 92%; | ||
float: left; | ||
} | ||
.left-column h2:last-of-type, .left-column h3:last-child { | ||
color: #000; | ||
} | ||
.right-column { | ||
width: 75%; | ||
float: right; | ||
padding-top: 1em; | ||
} |
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,156 @@ | ||
/* Remark theme - modified by greatghoul */ | ||
|
||
@import url(http://fonts.googleapis.com/css?family=Droid+Serif); | ||
|
||
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz); | ||
|
||
body { | ||
font-family: 'Droid Serif' | ||
} | ||
|
||
h1, h2, h3 { | ||
font-family: 'Yanone Kaffeesatz'; | ||
font-weight: 400; | ||
margin-bottom: 0; | ||
} | ||
|
||
h1 { | ||
font-size: 2.4em; | ||
} | ||
|
||
h2 { | ||
font-size: 2.0em; | ||
} | ||
|
||
h3 { | ||
font-size: 1.6em; | ||
} | ||
|
||
ul, ol { | ||
list-style-position: outside; | ||
} | ||
|
||
.footnote { | ||
position: absolute; | ||
bottom: 3em; | ||
} | ||
|
||
.menu > ul > li { | ||
font-size: 2.0em; | ||
} | ||
|
||
.menu > ul > li > ul > li { | ||
font-size: 1.0em; | ||
} | ||
|
||
.red { | ||
/* color: #fa0000; */ | ||
color: rgb(249, 38, 114); | ||
} | ||
|
||
.large { | ||
font-size: 2em; | ||
} | ||
|
||
a, a > code { | ||
color: rgb(249, 38, 114); | ||
text-decoration: none; | ||
} | ||
|
||
code { | ||
color: #2AA1FF; | ||
} | ||
|
||
.pull-left { | ||
float: left; | ||
width: 47%; | ||
} | ||
|
||
.pull-right { | ||
float: right; | ||
width: 47%; | ||
} | ||
|
||
.pull-right ~ p { | ||
clear: both; | ||
} | ||
|
||
#slideshow .slide .content code { | ||
font-size: 0.8em; | ||
} | ||
|
||
#slideshow .slide .content pre code { | ||
font-size: 0.9em; | ||
padding: 8px; | ||
background: #24251D; | ||
} | ||
|
||
.inverse { | ||
background: #272822; | ||
color: #BBBBBB; | ||
text-shadow: 0 0 20px #333; | ||
} | ||
|
||
.inverse h1, .inverse h2 { | ||
color: #f3f3f3; | ||
} | ||
|
||
/* Slide-specific styling */ | ||
#slide-how .slides { | ||
font-size: 0.9em; | ||
position: absolute; | ||
top: 151px; | ||
right: 140px; | ||
} | ||
|
||
#slide-how .slides h3 { | ||
margin-top: 0.2em; | ||
} | ||
|
||
#slide-how .slides .first, #slide-how .slides .second { | ||
padding: 1px 20px; | ||
height: 90px; | ||
width: 120px; | ||
-moz-box-shadow: 0 0 10px #777; | ||
-webkit-box-shadow: 0 0 10px #777; | ||
box-shadow: 0 0 10px #777; | ||
} | ||
|
||
#slide-how .slides .first { | ||
background: #fff; | ||
position: absolute; | ||
top: 20%; | ||
left: 20%; | ||
z-index: 1; | ||
} | ||
|
||
#slide-how .slides .second { | ||
position: relative; | ||
background: #fff; | ||
z-index: 0; | ||
} | ||
|
||
/* Two-column layout */ | ||
.left-column { | ||
color: #777; | ||
width: 20%; | ||
height: 92%; | ||
float: left; | ||
} | ||
|
||
.left-column h2:last-of-type, .left-column h3:last-child { | ||
color: #ccc; | ||
} | ||
|
||
.right-column { | ||
width: 75%; | ||
float: right; | ||
padding-top: 15px; | ||
} | ||
|
||
/* personnalisation */ | ||
|
||
pre { | ||
border-left: 0.4em solid #d7d7d7; | ||
padding: 1em !important; | ||
} |
Oops, something went wrong.