111 lines
2.0 KiB
SCSS
111 lines
2.0 KiB
SCSS
@charset "utf-8";
|
|
|
|
@import "../initial";
|
|
@import "variables";
|
|
|
|
html {
|
|
font-size: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: $sub-font;
|
|
font-size: inherit;
|
|
margin-top: 2.5em;
|
|
background:#bfbfbf;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
a:link,
|
|
a:visited {
|
|
color: $theme-color-main;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
color: $theme-color-four;
|
|
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 {
|
|
font-size: 0.8125rem;
|
|
-webkit-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-moz-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-ms-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-o-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
background: none;
|
|
border: none;
|
|
color: $theme-color-four;
|
|
box-shadow: $theme-color-four 0 0px 0px 2px inset;
|
|
margin-top: 1em;
|
|
border-radius: 2em;
|
|
behavior: url("/assets/ie_support/PIE2/PIE.htc");
|
|
&:hover {
|
|
color: #fff;
|
|
box-shadow:$theme-color-four 0 0px 0px 40px inset;
|
|
}
|
|
}
|
|
.btn-warning{
|
|
background-color:$theme-color-second!important;
|
|
border-color:$theme-color-second!important;
|
|
&:hover{
|
|
background-color:$theme-color-four!important;
|
|
border-color:$theme-color-four!important;
|
|
}
|
|
}
|
|
// 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"] {
|
|
.layout-content {
|
|
// overflow-x: auto;
|
|
}
|
|
}
|
|
#content{
|
|
position: absolute!important
|
|
}
|