82 lines
1.5 KiB
SCSS
82 lines
1.5 KiB
SCSS
|
@import url("//fonts.googleapis.com/css?family=Droid+Sans:400,700");
|
||
|
|
||
|
// Base
|
||
|
@import "base/orbitbar-override";
|
||
|
@import "base/sitemap-override";
|
||
|
@import "base/global";
|
||
|
@import "base/unity";
|
||
|
@import "base/utilities";
|
||
|
@import "base/pagination";
|
||
|
@import "base/accesskey";
|
||
|
@import "base/go_back_top";
|
||
|
@import "base/ckeditor-reset";
|
||
|
|
||
|
// Layout
|
||
|
@import "layout/*";
|
||
|
|
||
|
// Modules
|
||
|
@import "modules/*";
|
||
|
|
||
|
// Widget
|
||
|
@import "widget/*";
|
||
|
|
||
|
//RWD
|
||
|
@import "RWD";
|
||
|
|
||
|
|
||
|
.dropdown-toggle:focus {
|
||
|
// outline: 2px solid #43B5FC;
|
||
|
outline: transparent;
|
||
|
}
|
||
|
.container>.navbar-collapse {
|
||
|
@media (max-width: 767px) {
|
||
|
margin-left: 0;
|
||
|
margin-right: 0;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.extra { clear: both; }
|
||
|
|
||
|
//公告頁籤
|
||
|
ul.tab_nav {
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
font-family: $main-font;
|
||
|
|
||
|
li {
|
||
|
padding: 0.5em 1em;
|
||
|
background: $theme-color-green;
|
||
|
margin: 0.2em;
|
||
|
cursor: pointer;
|
||
|
transition: all 0.5s;
|
||
|
-moz-transition: all 0.5s;
|
||
|
-webkit-transition: all 0.5s;
|
||
|
-o-transition: all 0.5s;
|
||
|
|
||
|
&.active {
|
||
|
background: #19524b;
|
||
|
color: #fff;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
$screen-sm: 769px !default;
|
||
|
//覆蓋bootstrap預設樣式
|
||
|
.response-contentt {
|
||
|
position: relative;
|
||
|
margin-top: 0;
|
||
|
@media (min-width: $screen-sm) {
|
||
|
width: 70%;
|
||
|
}
|
||
|
|
||
|
@media (min-width: $screen-md) {
|
||
|
width: 60.625em;
|
||
|
}
|
||
|
|
||
|
@media (min-width: $screen-lg) {
|
||
|
width: 60.625em;
|
||
|
}
|
||
|
}
|