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
document.title = 'Easy alert for you!'; |
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
<?php | |
$isiPad = (strpos($_SERVER['HTTP_USER_AGENT'],'iPad') !== false) ? true : false; | |
if ($isiPad) { ?> | |
// You are an iPad | |
<?php } else { ?> | |
// You are not an iPad | |
<?php }; | |
?> |
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
#background { | |
height: 100%; | |
position: fixed; | |
width: 100%; | |
z-index: -666; | |
} | |
#background img { | |
height: auto; | |
width: 100%; | |
} |
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
<main class="s-site__content s-site__content--fullwidth"> | |
/* content */ | |
</main> |
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="s-row"> | |
<div class="s-row__column s-row__column--6-12"> | |
One half (6/12) | |
</div> | |
<div class="s-row__column s-row__column--3-12"> | |
One quarter (3/12) | |
</div> | |
<div class="s-row__column s-row__column--2-12"> | |
One sixth (2/12) | |
</div> |
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="s-row s-row--responsive"> | |
<div class="s-row__column s-row__column--4-12"> | |
One third (4/12) | |
</div> | |
<div class="s-row__column s-row__column--4-12"> | |
One third (4/12) | |
</div> | |
<div class="s-row__column s-row__column--4-12"> | |
One third (4/12) | |
</div> |
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="s-gallery s-gallery--8"> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> |
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="s-gallery s-gallery--4 s-gallery--responsive"> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
<div class="s-gallery__column">Item</div> | |
/* etc */ | |
</div> |
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
<header class="s-masthead"> | |
<div class="s-column"> | |
</div> | |
</header> | |
<div class="s-body"> | |
<div class="s-column"> | |
<main class="s-content"> | |
</main> |
OlderNewer