devroom.io/content/css/screen.sass

248 lines
5.1 KiB
Sass
Raw Normal View History

2013-07-25 05:35:02 +00:00
@import "flat-ui-colors"
2013-08-14 08:39:48 +00:00
@import "bootstrap"
@import "pygments"
2013-07-24 18:21:40 +00:00
@font-face
font-family: 'Titillium'
src: url('/fonts/titillium-regular-eot.eot')
src: url('/fonts/titillium-regular-eot.eot?#iefix') format('embedded-opentype'), url('/fonts/titillium-regular-woff.woff') format('woff'), url('/fonts/titillium-regular-ttf.ttf') format('truetype'), url('/fonts/titillium-regular-svg.svg#webfont') format('svg')
font-weight: 400
font-style: normal
@font-face
font-family: 'Titillium'
src: url('/fonts/titillium-regularitalic-eot.eot')
src: url('/fonts/titillium-regularitalic-eot.eot?#iefix') format('embedded-opentype'), url('/fonts/titillium-regularitalic-woff.woff') format('woff'), url('/fonts/titillium-regularitalic-ttf.ttf') format('truetype'), url('/fonts/titillium-regularitalic-svg.svg#webfont') format('svg')
font-weight: 400
font-style: italic
@font-face
font-family: 'Titillium'
src: url('/fonts/titillium-bold-eot.eot')
src: url('/fonts/titillium-bold-eot.eot?#iefix') format('embedded-opentype'), url('/fonts/titillium-bold-woff.woff') format('woff'), url('/fonts/titillium-bold-ttf.ttf') format('truetype'), url('/fonts/titillium-bold-svg.svg#webfont') format('svg')
font-weight: 700
font-style: normal
@font-face
font-family: 'Titillium'
src: url('/fonts/titillium-bolditalic-eot.eot')
src: url('/fonts/titillium-bolditalic-eot.eot?#iefix') format('embedded-opentype'), url('/fonts/titillium-bolditalic-woff.woff') format('woff'), url('/fonts/titillium-bolditalic-ttf.ttf') format('truetype'), url('/fonts/titillium-bolditalic-svg.svg#webfont') format('svg')
font-weight: 700
font-style: italic
$text-color: #191919
$code-color: #690000
$footer-color: #999999
2013-10-24 15:04:12 +00:00
2013-08-14 10:23:36 +00:00
$focus-color: $peterriver
2013-07-24 18:21:40 +00:00
2013-08-14 08:39:48 +00:00
body
color: $text-color
font-family: "Titillium", "Helvetica Neue", Helvetica, Arial, sans-serif
2013-08-14 08:39:48 +00:00
font-weight: 400
2014-06-25 08:31:25 +00:00
font-size: 1.7em
line-height: 1.7em
2013-10-24 15:04:12 +00:00
-webkit-font-smoothing: antialiased
2013-07-25 05:35:02 +00:00
2013-08-14 08:39:48 +00:00
a, a:hover, a:active, a:visited
color: $focus-color
text-decoration: none
2013-07-25 05:35:02 +00:00
2013-08-14 08:39:48 +00:00
h1, h2, h3, h4, h5, h6
font-family: "Titillium", "Helvetica Neue", Helvetica, Arial, sans-serif
2013-10-24 15:04:12 +00:00
font-weight: 400
-webkit-font-smoothing: antialiased
2013-07-25 05:35:02 +00:00
2013-11-01 08:29:30 +00:00
code
font-size: 0.8em
color: $code-color
background: none
padding: 0
border-radius: 0
pre
font-size: 0.8em !important
color: $code-color
2013-11-01 08:29:30 +00:00
2013-08-14 08:39:48 +00:00
#header
border-top: 3px solid $focus-color
2013-08-03 19:19:05 +00:00
2013-08-14 08:39:48 +00:00
a, a:hover
color: $text-color
h1, ol
font-size: 1em
2013-08-14 08:39:48 +00:00
display: inline-block
h1
2013-08-14 10:23:36 +00:00
padding-right: 0.8em
2013-08-14 08:39:48 +00:00
a
color: darken($text-color, 15%)
span
color: darken($text-color, 30%)
font-weight: 700
2013-08-14 08:39:48 +00:00
ol
padding-left: 0
li
display: inline-block
2013-08-14 10:23:36 +00:00
padding-right: 0.8em
2013-08-14 08:39:48 +00:00
2013-08-14 10:23:36 +00:00
.align-right
text-align: right
2013-08-14 08:39:48 +00:00
2013-08-14 10:23:36 +00:00
ol.social
font-size: 1.2em
margin-top: 16px
2013-08-14 10:23:36 +00:00
li
padding-right: 0
padding-left: 0.4em
a
font-size: 1.2em
color: $focus-color
#main
2014-04-04 13:14:42 +00:00
#welcome,
#note
font-weight: normal
background-color: #F7F7F7
border-radius: 4px
border: 1px solid #d9d9d9
padding: 10px 20px
2013-08-14 10:23:36 +00:00
2013-08-16 04:14:09 +00:00
#posts
.post
margin-bottom: 20px
2013-08-16 04:14:09 +00:00
h2.title
2013-10-24 15:04:12 +00:00
margin-bottom: 0
p
text-align: justify
2013-08-16 04:14:09 +00:00
p.meta
font-style: italic
color: lighten($text-color, 10%)
2014-04-04 13:14:42 +00:00
margin-bottom: 0
2013-08-16 04:14:09 +00:00
#older-posts
h2.title
margin-top: 0
margin-bottom: 10px
margin-left: 122px
2013-08-16 04:14:09 +00:00
font-size: 1.2em
span.meta
color: lighten($text-color, 10%)
margin-left: -122px
2013-08-16 04:14:09 +00:00
color: $text-color
2013-10-24 15:04:12 +00:00
font-size: 0.82em
padding-top: 0.1em
2013-08-16 04:14:09 +00:00
display: inline-block
float: left
2013-08-14 10:31:03 +00:00
.post,
.page
2014-04-04 13:14:42 +00:00
#note
margin-bottom: 1.6em
2013-08-14 10:23:36 +00:00
h1.title
font-size: 3em
2013-10-24 15:09:10 +00:00
margin-bottom: 0
padding-bottom: 0
2013-08-14 10:23:36 +00:00
a
text-decoration: none
&:hover
text-decoration: none
p
text-align: justify
2014-04-04 13:14:42 +00:00
margin-bottom: 1.6em
2013-08-14 08:39:48 +00:00
2013-08-14 10:23:36 +00:00
p.meta
2013-10-24 15:09:10 +00:00
margin-top: 0
padding-top: 0
font-style: italic
color: lighten($text-color, 30%)
2013-08-14 08:39:48 +00:00
img
border: 0
margin: 8px
2014-04-04 13:14:42 +00:00
max-width: 80%
&.right
float: right
&.left
float: left
2014-04-03 13:39:18 +00:00
&.center
display: block
margin: 8px auto
&.round
border-radius: 50%
&.bordered
border: 1px solid #696969
padding: 2px
2013-08-16 04:27:57 +00:00
#recent-posts
h4.title
clear: left
margin-top: 0
margin-bottom: 10px
margin-left: 92px
2013-08-16 04:27:57 +00:00
font-size: 1em
span.meta
margin-left: -92px
2013-08-16 04:27:57 +00:00
color: $text-color
font-size: 0.8em
padding-top: 0.2em
display: inline-block
float: left
#comments
margin-top: 20px
2013-08-14 10:31:03 +00:00
.page
h1.title
margin-top: 20px
2013-08-16 04:14:09 +00:00
#about
img
width: 96px
border-radius: 12px
margin-left: 6px
margin-bottom: 6px
float: right
2013-08-14 08:39:48 +00:00
#footer
2013-08-16 04:27:57 +00:00
margin-top: 20px
margin-bottom: 60px
2013-08-16 04:27:57 +00:00
.copyright
2013-08-14 08:39:48 +00:00
font-size: 0.8em
line-height: 1.4em
color: $footer-color
text-align: center
2013-08-14 08:39:48 +00:00
#appreciation
2014-01-20 18:22:47 +00:00
margin-top: 1em
border: 1px solid #e0e0e0
background-color: #fffff7
border-radius: 4px
padding: 10px 20px 0 20px
2014-01-20 18:22:47 +00:00
#donate-button
margin-left: 8px
2014-01-20 18:22:47 +00:00