var x = 078 + 1, // 79
y = 077 + 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
//// | |
/// Font-Face Generator (FF) | |
/// @author Hugo Giraudel, Michael Turnwall | |
//// | |
/// Path to the location of the font files |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
/// this overrides the default fonts directory. Set | |
/// it to the location of your fonts. | |
$fonts-dir: '/fonts'; | |
$fontsMap: ( | |
"Proxima-Nova": ( |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
%btn--default { | |
border-radius: 2px; | |
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); | |
margin: 0; | |
} | |
%btn--primary { |
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 (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
.mpgGraph { | |
$block: mpgGraph; | |
overflow: hidden; | |
margin: 20px auto; |
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
/** | |
* Default font size for the page. | |
* Leave the unit type off to make the math easier later on. | |
* Add this variable to the HTML element of the page. | |
* | |
* @group Fonts | |
*/ | |
$font-size-base: 14; | |
/** |
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
::-moz-placeholder { | |
color: red; | |
font-weight: 300; | |
padding-top: 5px; | |
} | |
::-webkit-input-placeholder { | |
color: red; | |
font-weight: 300; | |
padding-top: 5px; |
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 (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
%alertHeader { | |
font-size: 18px; | |
line-height: 1; | |
text-transform: uppercase; | |
color: #9b9b9b; |
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 (v3.4.1) | |
// Compass (v1.0.1) | |
// ---- | |
$color-wild-sand: #f5f5f5; | |
$color-black: #000; | |
%charlieHdr { | |
font-size: 22px; | |
} |
- All tags, attributes, and attribute values must be lowercase.
- All attribute values must be inside double quotation marks.
- All tags must be closed. Tags that do not contain data such as image and line break tags do not need to have a closing tag.
- All IDs and Classes are lower camel case.
- A tag's ID should be the first attribute followed by a class if one exists.
- Use Unix-style line endings (LF).