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
| //Set Variables | |
| $button-white: #ffffff; | |
| $button-green: #44ca00; | |
| $button-green-dark: #369a12; | |
| $button-blue: #a6d1f9; | |
| $button-blue-dark: #14283e; | |
| $button-gray: #eeeeee; | |
| $button-red: #9e0b0f; | |
| //Create Array |
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
| $nav: #6fc2da #4fb1ce #36aace #1e95b7 #0d7591 #086379 #025163 #004350; | |
| li { | |
| @for $i from 1 through 8 { | |
| &:nth-child(#{$i}) { | |
| background-color: nth($nav, $i); | |
| } | |
| } | |
| } |
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
| $category_icons: (0 all #777) (1 videogames #AD0000) (2 boardgames #108C03) (3 dev #AF049B); | |
| @each $icon in $category_icons { | |
| .icon-#{nth($icon,2)} { | |
| background-position: - nth($icon,1)*32px 0; | |
| background-color: nth($icon,3); | |
| } | |
| } | |
| .icon-small { |
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
| $list: one two three four five; | |
| ul { | |
| li { | |
| width:100px; | |
| height:100px; | |
| display:inline-block; | |
| list-style:none; | |
| border:1px solid #eee; | |
| } | |
| } |
NewerOlder