Last active
August 29, 2015 14:15
-
-
Save darkliquid/75834b3f72257c4cc04e to your computer and use it in GitHub Desktop.
gingko space theme css
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
<style> | |
body { | |
background: url(http://www.startextures.com/starnetblog/wp-content/uploads/2010/09/starnetblog_cloudy_starfield_texture8.jpg); | |
} | |
.cards { | |
background: rgba(0,0,0,.7); | |
color: #fff; | |
} | |
.columns .column .cards { | |
border :0; | |
} | |
.columns .blank { | |
background: rgba(255,255,255,0.2); | |
} | |
.cards.cards-active, | |
.cards.cards-child { | |
background: #fff; | |
color: #000; | |
} | |
.card.card-active { | |
border-left: 5px solid #8cc63f; | |
} | |
.card.editing { | |
color: #000; | |
} | |
#c1 .cards.cards-active { | |
background: rgba(0,0,0,.7); | |
color: #fff; | |
} | |
h3 { | |
font-weight: bold; | |
} | |
h1 em, h2 em, h3 em { | |
color: #2DCA2F; | |
} | |
.content-wrapper:before, | |
.content-wrapper:after { | |
display: block; | |
width: 100%; | |
background: rgba(0,0,0,.7); | |
content: "Column"; | |
font-size: 32px; | |
padding: 10px; | |
box-sizing: border-box; | |
text-align: center; | |
line-height: 80px; | |
position: relative; | |
top: 0; | |
color: #fff; | |
font-weight: bold; | |
} | |
#c1 .content-wrapper:before, | |
#c1 .content-wrapper:after { | |
content: "Periods"; | |
} | |
#c2 .content-wrapper:before, | |
#c2 .content-wrapper:after { | |
content: "Events"; | |
} | |
#c3 .content-wrapper:before, | |
#c3 .content-wrapper:after { | |
content: "Scenes"; | |
} | |
#c4 .content-wrapper:before, | |
#c4 .content-wrapper:after { | |
display: none; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment