1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/assets/styl/media.styl

45 lines
874 B
Stylus
Raw Normal View History

2014-07-12 02:00:18 +02:00
//
// kremalicious3
// --------------
// Media
//
// Responsive Media
/////////////////////////////////////
figure, img, svg, video, audio, embed, canvas
2014-07-12 21:22:47 +02:00
max-width: 100%
height: auto
margin: 0 auto
display: block
2014-07-12 02:00:18 +02:00
border-radius: $border-radius-base
// Images
/////////////////////////////////////
img
2014-07-21 21:07:43 +02:00
vertical-align: middle
2014-07-12 21:22:47 +02:00
box-shadow: 0 1px 3px rgba(0,0,0,.2)
2014-07-12 02:00:18 +02:00
.teaser,
.teaser img
2014-07-12 21:22:47 +02:00
margin-top: ($line-height-computed*1.5)
margin-bottom: ($line-height-computed*1.5)
2014-07-12 02:00:18 +02:00
// Media Positioning
/////////////////////////////////////
img.alignleft,
img.alignright,
img.aligncenter
2014-07-12 21:22:47 +02:00
float: none
display: block
margin: $line-height-computed auto
2014-07-12 02:00:18 +02:00
@media $breakpoint2
2014-07-12 21:22:47 +02:00
img.alignleft
2014-07-12 02:00:18 +02:00
margin: 0 $line-height-computed $line-height-computed 0
2014-07-12 21:22:47 +02:00
img.alignright
margin: 0 0 $line-height-computed $line-height-computed