Skip to content

Instantly share code, notes, and snippets.

@edtoken
Created April 21, 2014 11:28
Show Gist options
  • Select an option

  • Save edtoken/11140030 to your computer and use it in GitHub Desktop.

Select an option

Save edtoken/11140030 to your computer and use it in GitHub Desktop.
/**
Theme Name: {theme name}
Theme URI: {theme url}
Description: {descr}
Author: {author}
Author URI: {author url}
Version: {version}
**/
/**
* col-xs-*
* col-sm-*
* col-md-*
* col-lg-*
*
*
* .container();
* .make-row();
* .make-xs-column(12);
* .make-sm-column-push(12);
* .make-sm-column-pull(12);
* .make-sm-column-offset(12);
*
*/
/**
MEDIA WIDTH
@media(max-width: @screen-xs-max){
}
@media(min-width: @screen-tablet){
}
@media(min-width: @screen-desktop){
}
@media(min-width: @screen-lg-desktop){
}
MEDIA HEIGHT
@media (max-height:320px){
}
@media (min-height: 480px) {
}
@media (min-height: 600px) {
}
@media (min-height: 768px) {
}
@media (min-height: 800px) {
}
@media (min-height: 1024px) {
}
**/
.not-user-select()
{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.delete-outline()
{
outline: none;
&::-moz-focus-inner
{
border:0;
}
&:focus, &:active
{
outline: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment