92 lines
1.5 KiB
Plaintext
Executable File
92 lines
1.5 KiB
Plaintext
Executable File
// Thelia
|
|
|
|
// Main Title
|
|
.page-header { margin-top: 0; }
|
|
|
|
// Collapse
|
|
.no-js .collapse { display: block!important; }
|
|
|
|
// thumbnail
|
|
.thumbnail {
|
|
&.active,
|
|
&:active {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
}
|
|
&.active { border-color: @gray-light; }
|
|
}
|
|
|
|
// Layout
|
|
.main { margin-bottom: @line-height-computed; }
|
|
.layout-col-1,
|
|
.layout-col-2-left,
|
|
.layout-col-2-right {
|
|
.make-row();
|
|
}
|
|
|
|
/* 1 Column Layout */
|
|
.layout-col-1 .col-main { .make-md-column(12); }
|
|
|
|
/* 2 Columns Layout */
|
|
.layout-col-2-left {
|
|
.col-main {
|
|
.make-md-column(9);
|
|
.make-md-column-push(3);
|
|
}
|
|
.col-left {
|
|
.make-md-column(3);
|
|
.make-md-column-pull(9);
|
|
}
|
|
}
|
|
.layout-col-2-right {
|
|
.col-main {
|
|
.make-md-column(9);
|
|
}
|
|
.col-right {
|
|
.make-md-column(3);
|
|
}
|
|
}
|
|
|
|
|
|
// List Responsive
|
|
ul {
|
|
&.list-info,
|
|
&.list-address {
|
|
.make-row();
|
|
.list-unstyled();
|
|
|
|
> li {
|
|
.make-sm-column(4);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Address Format
|
|
.fn { font-weight: 600; display: block; }
|
|
.adr, .org { font-size: @font-size-small; }
|
|
|
|
// Address Book Table
|
|
.table-address {
|
|
.radio {
|
|
margin-top: 0;
|
|
label { font-weight: 600; }
|
|
}
|
|
.group-btn {
|
|
text-align: right;
|
|
}
|
|
|
|
thead,
|
|
tbody,
|
|
tfoot {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
border-color: #f5f5f5;;
|
|
padding: 10px 10px 0;
|
|
@media (min-width: @screen-tablet) { padding: 30px 30px 0; }
|
|
}
|
|
}
|
|
}
|
|
}
|