Files
liquid/_sass/modules/_buttons.scss
T
Tetsuro 0ca571f58c Sidebar work: added collapsing categories
Big refactoring of SCSS

active state for sidebar links

update gitignore for node_modules folder

removing node_modules from index

Sticky Liquid link in sidebar

Cleaned up index page

Adding fixed width to buttons

Refactoring

Converted sidebar to use Collections

Refactor sidebar CSS
2015-07-25 13:49:14 -04:00

33 lines
503 B
SCSS

.btn {
color: $color-white;
display: inline-block;
background: $color-blue-5;
padding: $spacing-unit/4 $spacing-unit/2;
width: 200px;
border-radius: 4px;
&:hover {
background: $color-blue-4;
text-decoration: none;
cursor: pointer;
}
}
.btn:visited {
color: $color-white;
}
.btn-row {
display: flex;
justify-content: center;
.btn:not(:first-child) {
margin-left: $spacing-unit / 2;
}
}
.icon {
vertical-align: middle;
margin-right: $spacing-unit / 4;
}