Last active
December 13, 2015 17:18
-
-
Save brianjhanson/4946314 to your computer and use it in GitHub Desktop.
A CodePen by Brian Hanson. Simple CSS Browser Chrome - Simple way to display a browser around images for my portfolio. Still trying to figure out a way to make it easier to use.
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
<div class="wrapper"> | |
<h1>Single Element Simple Browser Chrome</h1> | |
<figure class="web"> | |
<img src="http://placekitten.com/1000/600"> | |
</figure> | |
</div><!-- end .wrapper --> |
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
@import "compass"; | |
*{ | |
@include box-sizing(border-box); | |
} | |
.cf:before, | |
.cf:after { | |
content: " "; /* 1 */ | |
display: table; /* 2 */ | |
} | |
.cf:after { | |
clear: both; | |
} | |
.wrapper{ | |
max-width: 1000px; | |
margin: 0 auto; | |
padding: 1em; | |
} | |
h1{ | |
font: 24px/1.1 helvetica; | |
font-weight: 700; | |
} | |
img{ | |
max-width: 100%; | |
display: block; | |
height: auto !important; | |
} | |
.web{ | |
&:before{ | |
content: "● ● ●"; | |
color: #999; | |
text-align: left; | |
font-size: 1.5em; | |
background: #ccc; | |
display: block; | |
/*border: 1px solid #999;*/ | |
padding: 2px 8px 6px 8px; | |
@include border-top-radius(3px); | |
} | |
&:after{ | |
content:" "; | |
background: #ccc; | |
display: block; | |
/* border: 1px solid #999;*/ | |
padding: 8px; | |
@include border-bottom-radius(3px); | |
} | |
img{ | |
border-left: 1px solid #ccc; | |
border-right: 1px solid #ccc; | |
border-top: 1px solid #999; | |
border-bottom: 1px solid #999; | |
margin: 0 auto; | |
} | |
} | |
figcaption{ | |
padding-top: .5em; | |
color: #666; | |
font-style: italic; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment