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
| .container{ | |
| /* Just a container to set the width and positioning of tabs block */ | |
| margin:2em auto 0; | |
| position:relative; | |
| width:80%; | |
| } | |
| .reset{ |
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
| .container{ | |
| /* Just a container to set the width and positioning of tabs block */ | |
| margin:2em auto 0; | |
| position:relative; | |
| width:80%; | |
| } | |
| .reset{ | |
| /* just the reset link. Nothing to see here */ | |
| background:pink; | |
| display: inline-block; |
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
| /** | |
| * test 1 | |
| */ | |
| .query{ | |
| display: inline-block; | |
| height: 10px; | |
| padding:0; | |
| } | |
| .col1{ |
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
| /** | |
| * CSS Arrow icons | |
| */ | |
| .widget { | |
| overflow: hidden; | |
| position:relative; | |
| text-indent: -999em; /* hide text from view */ | |
| } | |
| .widget: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> | |
| <!--[if IE 8]> <html lang="sv-SE" class="no-js ie8"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html lang="sv-SE" class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Breakpoint detection test</title> | |
| <style type="text/css" media="screen"> | |
| @media screen and (min-width: 320px) { | |
| #page:after { | |
| content: 'smallest'; /* represent the current width-bracket */ |
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
| <?php | |
| /** | |
| * @file | |
| * Default theme implementation to display a block. | |
| * | |
| * Available variables: | |
| * - $block->subject: Block title. | |
| * - $content: Block content. | |
| * - $block->module: Module that generated the block. |
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
| // sass 3.2 or higher required | |
| @mixin respond-to($min-width, $max-width: null) { | |
| $fix-mqs: false !default; | |
| // If we're outputting for a fixed media query set... | |
| @if $fix-mqs { | |
| // ...and if we should apply these rules... | |
| @if $max-width != null { | |
| @if (($fix-mqs >= $min-width) and ($fix-mqs <= $max-width)) { | |
| // ...output the content the user gave us. |
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
| /** | |
| * testing units | |
| */ | |
| body{ | |
| text-align: center; | |
| } | |
| #box{ | |
| background-color: red; | |
| display: inline-block; | |
| width: 200px; |
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
| Testing 123 | |
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> | |
| <title>Tiny data-uri image strings</title> | |
| <style> | |
| .image-sample{ | |
| border: 1px solid; | |
| } | |
| </style> | |
| </head> |
OlderNewer