96 lines
1.3 KiB
SCSS
96 lines
1.3 KiB
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
@import "variables";
|
||
|
|
||
|
html {
|
||
|
font-size: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: $sub-font;
|
||
|
font-size:1em;
|
||
|
margin-top: 2.5em;
|
||
|
background: #fff;
|
||
|
}
|
||
|
.ahover2{
|
||
|
color: #333!important;
|
||
|
&:hover,
|
||
|
&:focus{
|
||
|
color: lighten($theme-color-second, 10%)!important;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
a:link,
|
||
|
a:visited {
|
||
|
color: $theme-color-second;
|
||
|
}
|
||
|
|
||
|
a:hover,
|
||
|
a:focus {
|
||
|
color: lighten($theme-color-second, 10%);
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-width: 100%;
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
.admin-edit {
|
||
|
clear: both;
|
||
|
}
|
||
|
|
||
|
// override bootsrap settings
|
||
|
th,
|
||
|
td {
|
||
|
padding: 0.5em .5rem;
|
||
|
}
|
||
|
|
||
|
.borderless > tbody > tr > td,
|
||
|
.borderless > tbody > tr > th,
|
||
|
.borderless > tfoot > tr > td,
|
||
|
.borderless > tfoot > tr > th,
|
||
|
.borderless > thead > tr > td,
|
||
|
.borderless > thead > tr > th {
|
||
|
border: none !important;
|
||
|
}
|
||
|
|
||
|
a.btn-primary {
|
||
|
color: $theme-white;
|
||
|
border-color: #14324f;
|
||
|
background-color: #14324f;
|
||
|
font-size: 1rem;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: #1f4e7c;
|
||
|
border-color: #1f4e7c;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Page heading
|
||
|
.page-module-title {
|
||
|
@extend .unity-title;
|
||
|
|
||
|
margin-bottom: 1.125em;
|
||
|
}
|
||
|
|
||
|
.view-count {
|
||
|
font-size: 0.75rem;
|
||
|
}
|
||
|
|
||
|
.view_count {
|
||
|
> i {
|
||
|
font-size: 0.75rem;
|
||
|
|
||
|
&:before {
|
||
|
margin-right: 0.5em;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Take care of exceeding content
|
||
|
body[data-module="page_content"],
|
||
|
body[data-module="announcement"] {
|
||
|
}
|