Skip to content

Instantly share code, notes, and snippets.

@AnthonyDS
Last active October 1, 2016 00:30
Show Gist options
  • Save AnthonyDS/47d9de8ddce63b36c8f14babf161e218 to your computer and use it in GitHub Desktop.
Save AnthonyDS/47d9de8ddce63b36c8f14babf161e218 to your computer and use it in GitHub Desktop.
Sugar
//
// padding, margin, font, ...
//
.class_name
//
// padding
//
// CSS var.1
padding-top: 21px
padding-left: 18px
padding-right: 18px
padding-bottom: 25px
// CSS var.2
padding: 21px 18px 25px
// SASS
padding:
top: 21px
left: 18px
right: 18px
bottom: 25px
//
// font
//
// CSS
font-size: 13px
font-weight: 400
// SASS
font:
size: 13px
weight: 400
//
//
//
input[type=text]
&[disabled]
background: #fff
[id^="spinner"]
position: absolute
top: 0
left: 0
z-index: 10000
//
// Cool!
//
color: rgba(#5b5b65, 0.4)
//
// keyframes
//
@keyframes animar_edificios,
@-webkit-keyframes animar_edificios,
@-ms-keyframes animar_edificios,
@-moz-keyframes animar_edificios
from
background-position: 0 0;
to
background-position: 100% 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment