mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-28 09:40:14 -07:00
145 lines
2.1 KiB
SCSS
145 lines
2.1 KiB
SCSS
.default-theme {
|
|
|
|
.ui.main {
|
|
padding-top: 50px;
|
|
min-height: calc(100% - 67px);
|
|
}
|
|
|
|
.ui.head {
|
|
position: relative;
|
|
|
|
.header {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.breadcrumb {
|
|
right: 0;
|
|
top: 0;
|
|
position: absolute;
|
|
padding: 20px 0;
|
|
}
|
|
}
|
|
|
|
.ui.card , .ui.card > :first-child {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.ui.fixed + .ui.grid {
|
|
border-radius: 0;
|
|
border: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ui.menu .ui.search .prompt {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.item-info {
|
|
min-height: 300px;
|
|
}
|
|
|
|
.ui.fixed + .ui.header {
|
|
margin-top: 3em;
|
|
padding-bottom: 4em;
|
|
}
|
|
|
|
.link {
|
|
padding-left: 30px;
|
|
position: relative;
|
|
}
|
|
|
|
.link:before {
|
|
width: 23px;
|
|
height: 23px;
|
|
position: absolute;
|
|
left: 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.link.brickset:before {
|
|
content: '';
|
|
background: url("/resources/images/brickset_logo.png");
|
|
background-size: cover;
|
|
}
|
|
|
|
.link.rebrickable:before {
|
|
content: '';
|
|
background: url("/resources/images/rebrickable_logo.png");
|
|
background-size: cover;
|
|
}
|
|
|
|
.number-range {
|
|
margin: 1em 0.6em 3em;
|
|
}
|
|
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.ui.image.load {
|
|
background: url("/resources/images/spinner.svg") no-repeat center;
|
|
background-color: lightgrey;
|
|
}
|
|
|
|
.found-count {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.truncate {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ui.search > .results .result {
|
|
.title {
|
|
font-weight: normal;
|
|
}
|
|
|
|
em {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.image {
|
|
width: 4em;
|
|
height: 4em;
|
|
}
|
|
padding: 0.5em 1em !important;
|
|
}
|
|
|
|
.spacing.top {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.show.all {
|
|
font-size: 1.5em;
|
|
|
|
&:after {
|
|
content: ' »';
|
|
}
|
|
}
|
|
|
|
.ajax-load > .loader, .empty{
|
|
margin-top: 100px !important;
|
|
margin-bottom: 100px !important;
|
|
}
|
|
}
|
|
|
|
@each $i in 5 10 15 20 25 30 40 50 60 {
|
|
.ui.spacing.#{$i} {
|
|
margin-bottom: #{$i}px;
|
|
margin-top: #{$i}px;
|
|
}
|
|
}
|
|
|
|
.ui.text.right {
|
|
text-align: right;
|
|
}
|
|
|
|
.ui.segment.vertical.noborder {
|
|
border-bottom: 0;
|
|
} |