47 lines
800 B
SCSS
47 lines
800 B
SCSS
/*
|
|
Crafting Guide - item.scss
|
|
|
|
Copyright (c) 2015 by Redwood Labs
|
|
All rights reserved.
|
|
*/
|
|
|
|
.view__item {
|
|
a {
|
|
text-decoration: none;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
.itemName {
|
|
color: $color-link;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
table {
|
|
background: $color-gray-faint;
|
|
}
|
|
}
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
td.itemName {
|
|
color: $color-text;
|
|
font-family: $font-family-normal;
|
|
font-size: $font-size-normal;
|
|
font-weight: bold;
|
|
padding-left: 1em;
|
|
text-align: left;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
td.itemIcon {
|
|
width: 3.6em;
|
|
|
|
img {
|
|
height: 3.6em; width: 3.6em;
|
|
}
|
|
}
|
|
}
|