This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>amp proportional image</title> | |
<style> | |
.box-img { | |
max-width: 300px; | |
img { |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Massonry</title> | |
<style> | |
.block-portfolio { | |
column-count: 3; | |
column-gap: 0; | |
background: #131212; |
This file contains hidden or 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
https://github.com/philipwalton/flexbugs#flexbug-3 |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<style> | |
.accessibility { | |
display: inline-block; | |
position:absolute; | |
left:-10000px; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>google map</title> | |
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB6-Rn3HHXzDyy7N3wVjPmPsyY6Cq8tQ7s"></script> | |
</head> | |
<style> | |
.map-holder { | |
width: 100%; |
This file contains hidden or 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
.tooltip { | |
&.show { | |
opacity: 1; | |
} | |
>.tooltip-inner { | |
background-color: $white; | |
color: #ABABAB; | |
max-width: 561px; |
This file contains hidden or 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
.custom-checkbox { | |
.custom-control-input { | |
&:checked { | |
~ { | |
.custom-control-label { | |
&::before { |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>slick-slider shadow</title> | |
</head> | |
<script> | |
$('.slider').slick({ | |
autoplay: false, | |
dots: false, |
This file contains hidden or 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
.slides { | |
transition: all 100ms ease-in; | |
transform: scale(1); | |
&:hover { | |
transition: all 200ms ease-in; | |
transform: scale(1.1); | |
} | |
} |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>label instead placeholder</title> | |
<style> | |
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700); | |
form { | |
max-width: 450px; | |
margin: 0 auto; |