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
<style> | |
.view-list .excerpt-thumb { /* This is the selector for the excerpt thumbnail */ | |
display: block; | |
float: none; | |
width: 100%; /* This sets the width and height of thumbnail to 100% of the container it belongs to */ | |
height: 100%; | |
} | |
.entry-content .excerpt-thumb img { /* This is the selector for the excerpt thumbnail image */ | |
position: relative; |
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
<style> | |
.view-list .excerpt-thumb { | |
display: block; | |
float: none; | |
width: 100%; | |
height: 100%; | |
} | |
.entry-content .excerpt-thumb 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
.paragraph { | |
font-family:proxima-nova, sans-serif !important; | |
font-style: normal; | |
font-size: 12px; | |
font-weight:400; | |
letter-spacing: 3px; | |
color: #231f20; | |
text-transform: uppercase; | |
line-height: 1.5em; |
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
<Variable name="TextFont" description="Text Font" type="font" value="400 12px 'Raleway', sans-serif"/> | |
<Variable name="TitleFont" description="Titles Font" type="font" value="500 12px 'Raleway', sans-serif"/> |
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
/* | |
* Dropit v1.1.0 | |
* http://dev7studios.com/dropit | |
* | |
* Copyright 2012, Dev7studios | |
* Free to use and abuse under the MIT license. | |
* http://www.opensource.org/licenses/mit-license.php | |
*/ | |
;(function($) { |
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
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=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
@media screen and (max-width : 1280px) { | |
/* For Screen Width Less than Or Equal To 1280 */ | |
/* CSS CODE HERE FOR DESKTOP DESIGN */ | |
} | |
@media screen and (max-width : 1024px) { | |
/* For Screen Width Less than Or Equal To 1024 */ | |
/* CSS CODE HERE FOR LAPTOPS DESIGN */ | |
} |