This commit is contained in:
parent
ed5227aea1
commit
a3d797799b
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 176 KiB |
Binary file not shown.
After Width: | Height: | Size: 235 KiB |
|
@ -532,6 +532,8 @@ extendPanelWidget();
|
||||||
|
|
||||||
// 當文件物件模型(DOM)載入後,執行init函數
|
// 當文件物件模型(DOM)載入後,執行init函數
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
$('.i-annc__page-title').after($('.addcontent'));
|
||||||
|
$('.page-module-title').after($('.addcontent'));
|
||||||
//滾動出現效果
|
//滾動出現效果
|
||||||
$(window).scroll(function() {
|
$(window).scroll(function() {
|
||||||
var windowBottom = $(window).scrollTop() + $(window).innerHeight();
|
var windowBottom = $(window).scrollTop() + $(window).innerHeight();
|
||||||
|
|
|
@ -11,8 +11,10 @@ body {
|
||||||
font-family: $sub-font;
|
font-family: $sub-font;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
margin-top: 2.5em;
|
margin-top: 2.5em;
|
||||||
background:#bfbfbf;
|
background:#f4f4f4;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
background: url(/assets/紋路.png) repeat #f4f4f4;
|
||||||
|
background-size: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:link,
|
a:link,
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
@import "variables";
|
@import "variables";
|
||||||
|
|
||||||
.go-back-top {
|
.go-back-top {
|
||||||
background: rgba($theme-color-four, 0.9);
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0.625em 0.75em;
|
padding: 0.625em 0.75em;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
@ -11,12 +10,18 @@
|
||||||
right: 0.9375em;
|
right: 0.9375em;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: none;
|
display: none;
|
||||||
color: $theme-white;
|
color: transparent;
|
||||||
font-size: 0.750em;
|
font-size: 0.750em;
|
||||||
border-radius: 0.125em;
|
border-radius: 0.125em;
|
||||||
z-index: 1050;
|
z-index: 1050;
|
||||||
|
background: url(/assets/coin.png) bottom no-repeat;
|
||||||
|
background-size: contain;
|
||||||
&:hover {
|
&:hover {
|
||||||
background: rgba($theme-color-four, 1);
|
transform: scale(1.5);
|
||||||
|
-webkit-transition: .3s ease-out;
|
||||||
|
-moz-transition: .3s ease-out;
|
||||||
|
-ms-transition: .3s ease-out;
|
||||||
|
-o-transition: .3s ease-out;
|
||||||
|
transition: .3s ease-out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
font-family: $main-font;
|
font-family: $main-font;
|
||||||
font-size: $font-h1;
|
font-size: $font-h1;
|
||||||
color: $theme-color-main;
|
color: $theme-color-main;
|
||||||
border-left: 3px solid #0268b7;
|
border-left: 3px solid $theme-color-second;
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
&:after{
|
&:after{
|
||||||
height: 0;
|
height: 0;
|
||||||
|
|
|
@ -13,9 +13,9 @@ $theme-red: #d20001;
|
||||||
$theme-blue: #003d7e;
|
$theme-blue: #003d7e;
|
||||||
|
|
||||||
$theme-color-main: #333333;
|
$theme-color-main: #333333;
|
||||||
$theme-color-second:#0268b7;
|
$theme-color-second:#ad081b;
|
||||||
$theme-color-third: #ed4c43;
|
$theme-color-third: #ed4c43;
|
||||||
$theme-color-four: #0268b7;
|
$theme-color-four: #ad081b;
|
||||||
$theme-color-green: #32D9C3;
|
$theme-color-green: #32D9C3;
|
||||||
|
|
||||||
// Font stacks
|
// Font stacks
|
||||||
|
|
|
@ -16,9 +16,12 @@
|
||||||
@extend .response-container;
|
@extend .response-container;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.floatwrap1{
|
||||||
.content-inner{
|
position: relative;
|
||||||
background-color: #f4f4f4;
|
background: url(/assets/花紋.png) top right no-repeat;
|
||||||
|
background-size: 30%;
|
||||||
|
-webkit-transition: all 0.3s ease-out;
|
||||||
|
transition: all 0.3s ease-out;
|
||||||
}
|
}
|
||||||
.clearfix{
|
.clearfix{
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
|
@ -34,9 +37,23 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.floatwrapp{
|
.floatwrapp{
|
||||||
background-color:#0268b7;
|
background-color:$theme-color-second;
|
||||||
@media(min-width: 769px){
|
@media(min-width: 769px){
|
||||||
width: 80%;
|
width: 80%;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.addcontent{
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.internal-page{
|
||||||
|
.floatwrap{
|
||||||
|
position: relative;
|
||||||
|
background: url(/assets/花紋.png) top right no-repeat #fff;
|
||||||
|
background-size: 30%;
|
||||||
|
background-position-y: -5%;
|
||||||
|
-webkit-transition: all 0.3s ease-out;
|
||||||
|
transition: all 0.3s ease-out;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -15,13 +15,10 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: lighten($theme-color-main, 10%);
|
color: lighten($theme-color-second, 10%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.layout-footer-inner{
|
|
||||||
background:#f4f4f4;
|
|
||||||
}
|
|
||||||
.layout-footer-content{
|
.layout-footer-content{
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
background: #0268b7;
|
|
||||||
.container {
|
.container {
|
||||||
@extend .response-container;
|
@extend .response-container;
|
||||||
}
|
}
|
||||||
|
@ -32,7 +31,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.header-nav {
|
.header-nav {
|
||||||
background: #0268b7;
|
background: $theme-color-second;
|
||||||
padding: 0.5em 1em;
|
padding: 0.5em 1em;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-family: $main-font;
|
font-family: $main-font;
|
||||||
|
@ -60,7 +59,7 @@
|
||||||
.navbar-header {
|
.navbar-header {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@media(min-width: 769px){
|
@media(min-width: 769px){
|
||||||
background: #0268b7;
|
background: $theme-color-second;
|
||||||
width: 20%;
|
width: 20%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
|
|
@ -199,7 +199,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.w-annc__item {
|
.w-annc__item {
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
padding-bottom: 1em;
|
padding-bottom: 1em;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -211,7 +211,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
padding-top: 0.8em;
|
padding-top: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
&:hover{
|
&:hover{
|
||||||
-webkit-transition: .3s ease-out;
|
-webkit-transition: .3s ease-out;
|
||||||
-moz-transition: .3s ease-out;
|
-moz-transition: .3s ease-out;
|
||||||
|
@ -244,7 +244,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
padding-top: 0.8em;
|
padding-top: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
&:hover{
|
&:hover{
|
||||||
-webkit-transition: .3s ease-out;
|
-webkit-transition: .3s ease-out;
|
||||||
-moz-transition: .3s ease-out;
|
-moz-transition: .3s ease-out;
|
||||||
|
@ -285,7 +285,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
padding-top: 0.8em;
|
padding-top: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
&:hover{
|
&:hover{
|
||||||
-webkit-transition: .3s ease-out;
|
-webkit-transition: .3s ease-out;
|
||||||
-moz-transition: .3s ease-out;
|
-moz-transition: .3s ease-out;
|
||||||
|
@ -322,7 +322,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
padding-top: 0.8em;
|
padding-top: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
&:hover{
|
&:hover{
|
||||||
-webkit-transition: .3s ease-out;
|
-webkit-transition: .3s ease-out;
|
||||||
-moz-transition: .3s ease-out;
|
-moz-transition: .3s ease-out;
|
||||||
|
@ -359,7 +359,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
padding-top: 0.8em;
|
padding-top: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
&:hover{
|
&:hover{
|
||||||
-webkit-transition: .3s ease-out;
|
-webkit-transition: .3s ease-out;
|
||||||
-moz-transition: .3s ease-out;
|
-moz-transition: .3s ease-out;
|
||||||
|
@ -393,7 +393,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
padding-top: 0.8em;
|
padding-top: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
&:hover{
|
&:hover{
|
||||||
-webkit-transition: .3s ease-out;
|
-webkit-transition: .3s ease-out;
|
||||||
-moz-transition: .3s ease-out;
|
-moz-transition: .3s ease-out;
|
||||||
|
@ -485,7 +485,7 @@
|
||||||
.w-annc__item {
|
.w-annc__item {
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.w-annc__entry-title {
|
.w-annc__entry-title {
|
||||||
|
@ -558,7 +558,7 @@
|
||||||
.w-annc__item {
|
.w-annc__item {
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.w-annc__entry-title {
|
.w-annc__entry-title {
|
||||||
|
@ -714,7 +714,7 @@ table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, tabl
|
||||||
.i-annc__item {
|
.i-annc__item {
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
.i-annc__title {
|
.i-annc__title {
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
|
@ -749,7 +749,7 @@ table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, tabl
|
||||||
.i-annc__item {
|
.i-annc__item {
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
.i-annc__title {
|
.i-annc__title {
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
|
@ -799,6 +799,7 @@ table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, tabl
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
.i-annc__title {
|
.i-annc__title {
|
||||||
font-family: $main-font;
|
font-family: $main-font;
|
||||||
|
@ -902,7 +903,7 @@ table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, tabl
|
||||||
.i-annc__item {
|
.i-annc__item {
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
padding-bottom: 0.8em;
|
padding-bottom: 0.8em;
|
||||||
border-bottom: 0.0625em dashed #e4e4e4;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
.i-annc__title {
|
.i-annc__title {
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
@media(min-width: 769px){
|
@media(min-width: 769px){
|
||||||
display: block !important;
|
display: block !important;
|
||||||
width: 20%;
|
width: 20%;
|
||||||
background: #f4f4f4;
|
|
||||||
float: left;
|
float: left;
|
||||||
top:14.5vw;
|
top:14.5vw;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.widget-link__widget-title{
|
.widget-link__widget-title{
|
||||||
border-left: 3px solid #0268b7;
|
border-left: 3px solid $theme-color-second;
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
span{
|
span{
|
||||||
&:after{
|
&:after{
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
@import "../initial";
|
@import "../initial";
|
||||||
.breadcrumb {
|
.breadcrumb {
|
||||||
background-color: #fff;
|
background: none;
|
||||||
a:link, a:visited { color: $theme-color-main; }
|
a:link, a:visited { color: $theme-color-main; }
|
||||||
}
|
}
|
||||||
.breadcrumb>li+li:before {
|
.breadcrumb>li+li:before {
|
||||||
|
|
|
@ -36,8 +36,11 @@
|
||||||
</div>
|
</div>
|
||||||
<section class="header-banner" data-pp="900"></section>
|
<section class="header-banner" data-pp="900"></section>
|
||||||
<div class="collapse navbar-collapse modules-menu" id="layout-navigation">
|
<div class="collapse navbar-collapse modules-menu" id="layout-navigation">
|
||||||
<a id="accesskey_menu" title="accesskey menu" accesskey="M" href="#" title="Main menu">:::</a>
|
<a id="accesskey_menu" title="accesskey menu" accesskey="M" href="#" title="Main menu">:::</a>
|
||||||
<%= render_menu %>
|
<%= render_menu %>
|
||||||
|
<div class="row">
|
||||||
|
<section class="layout-content-box col-sm-12" data-pp="666"></section>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -11,14 +11,15 @@
|
||||||
<a id="accesskey_content" accesskey="C" href="/<%= "#{locale.to_s}" %>/accesskey" title="Content">:::</a>
|
<a id="accesskey_content" accesskey="C" href="/<%= "#{locale.to_s}" %>/accesskey" title="Content">:::</a>
|
||||||
<div class="layout-contentwrap">
|
<div class="layout-contentwrap">
|
||||||
<div class="layout-content-inner content-inner container">
|
<div class="layout-content-inner content-inner container">
|
||||||
<div class="floatwrap">
|
<div class="floatwrap floatwrap1">
|
||||||
<section class="body-banner" data-pp="1"></section>
|
<section class="body-banner" data-pp="1"></section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<section class="layout-slide no-print single-child-datapp" data-pp="301"></section>
|
|
||||||
|
|
||||||
<div class="layout-content-inner content-inner container">
|
<div class="layout-content-inner content-inner container">
|
||||||
<div class="floatwrap">
|
<div class="floatwrap ">
|
||||||
|
<section class="layout-slide no-print single-child-datapp" data-pp="301"></section>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<section class="layout-content-box col-sm-8" data-pp="4"></section>
|
<section class="layout-content-box col-sm-8" data-pp="4"></section>
|
||||||
<section class="layout-content-box col-sm-4" data-pp="5"></section>
|
<section class="layout-content-box col-sm-4" data-pp="5"></section>
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
<%= render_orbit_bar %>
|
<%= render_orbit_bar %>
|
||||||
<div class="background" data-pp="100"></div>
|
<div class="background" data-pp="100"></div>
|
||||||
<%= render_header %>
|
<%= render_header %>
|
||||||
<section class="layout-slide no-print single-child-datapp" data-pp="300"></section>
|
|
||||||
<div class="layout-contentwrap">
|
<div class="layout-contentwrap">
|
||||||
<div class="layout-content">
|
<div class="layout-content">
|
||||||
<div class="layout-content-inner content-inner container">
|
<div class="layout-content-inner content-inner container">
|
||||||
|
@ -20,6 +19,14 @@
|
||||||
<section class="page-content-box col-sm-3" data-pp="903"></section>
|
<section class="page-content-box col-sm-3" data-pp="903"></section>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<div class="addcontent">
|
||||||
|
<section class="page-content-box col-sm-6" data-pp="801"></section>
|
||||||
|
<section class="page-content-box col-sm-6" data-pp="802"></section>
|
||||||
|
<section class="page-content-box col-sm-8" data-pp="803"></section>
|
||||||
|
<section class="page-content-box col-sm-4" data-pp="804"></section>
|
||||||
|
<section class="page-content-box col-sm-4" data-pp="805"></section>
|
||||||
|
<section class="page-content-box col-sm-8" data-pp="806"></section>
|
||||||
|
</div>
|
||||||
<section class="layout-content-box left-column col-sm-9">
|
<section class="layout-content-box left-column col-sm-9">
|
||||||
<div class="extra" data-pp="600"></div>
|
<div class="extra" data-pp="600"></div>
|
||||||
<main id="main-content" class="main-content" data-content="true">
|
<main id="main-content" class="main-content" data-content="true">
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"key":"t_culture1","title":"t_culture1","author":"kenlee","thumbnail":"assets/images/design_thumb.png"}
|
{"key":"t_culture_red","title":"t_culture_red","author":"kenlee","thumbnail":"assets/images/design_thumb.png"}
|
Loading…
Reference in New Issue