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
<snippet> | |
<content><![CDATA[ | |
/* ==|==================== | |
$1/$2 | |
======================= */ | |
]]></content> | |
<tabTrigger>comment-h1</tabTrigger> | |
</snippet> |
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
.ui-autocomplete { | |
border-radius: 4px; | |
padding: 0; | |
.ui-menu-item { | |
margin: 0; | |
padding: 10px 20px; | |
border-bottom: solid 1px #eee; | |
&:first-child { |
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
// ---------------------- | |
// == Z-index scale (inspired by https://gist.github.com/fat/1f6da6b3bd0311a1f8a0) | |
// ---------------------- | |
// Z-Index Scale (private vars) | |
// -------------------------------------------------- | |
$zindex-1: 100; | |
$zindex-2: 200; | |
$zindex-3: 300; | |
$zindex-4: 400; |
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
.tag-editor { | |
border-radius: 3px; | |
border-color: #ddd; | |
padding-top: 3px; | |
padding-bottom: 3px; | |
} |
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
// Slide In From The Bottom To The Top | |
// ------------------------------- | |
@-webkit-keyframes slideInUp { | |
0% { -webkit-transform: translate3d(0, 100%, 0); } | |
100% { -webkit-transform: translate3d(0, 0, 0); } | |
} | |
@-moz-keyframes slideInUp { | |
0% { -moz-transform: translate3d(0, 100%, 0); } | |
100% { -moz-transform: translate3d(0, 0, 0); } |
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
<snippet> | |
<content><![CDATA[ | |
@media (min-width: \$screen-sm-min) { | |
} | |
]]></content> | |
<tabTrigger>bs-xsmall</tabTrigger> | |
<scope>source.scss</scope> | |
</snippet> |
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
<snippet> | |
<content><![CDATA[ | |
@media #{\$medium-and-up} { | |
} | |
]]></content> | |
<tabTrigger>materialize query medium</tabTrigger> | |
<scope>source.scss</scope> | |
</snippet> |
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-title2 { | |
text-align: center; | |
border-bottom: solid 1px #ddd; | |
margin-bottom: 50px; | |
span { | |
background-color: #fff; | |
padding: 5px 20px; | |
display: inline-block; | |
position: relative; |
OlderNewer