|
@ -1,16 +1,63 @@
|
||||||
body {
|
body, .layout-footer, .layout-footer-inner {
|
||||||
background-color: #c9d7e4;
|
background-color: #c9d7e4;
|
||||||
}
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #0260a7;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #333333;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #000000;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
header{
|
header{
|
||||||
margin-top: 4em;
|
margin-top: 4em;
|
||||||
}
|
}
|
||||||
}
|
.layout-header #layout-navigation{
|
||||||
@media (max-width: 767px){
|
margin: 0;
|
||||||
.container {
|
}
|
||||||
width: 100%;
|
}
|
||||||
|
@media (max-width: 767px){
|
||||||
|
header, .container, .navbar-brand {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 173 KiB |
|
@ -1,13 +1,75 @@
|
||||||
body {
|
.layout-content, .layout-footer {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #0b0c0f;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
background: url("/assets/seminar/background_style/10/pageheader.jpg") no-repeat scroll left top #0b0c0f;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-content a{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #cab5b5;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #43f9ed;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 411 B |
|
@ -1,13 +1,67 @@
|
||||||
body {
|
header, .layout-footer, .layout-footer-inner {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: url("/assets/seminar/background_style/11/body.jpg") repeat-x 0 0 #fff;
|
||||||
|
/*background: linear-gradient(to bottom, #303030 50%, #d4d3d3 50%);*/
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #727272;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a: hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #ff9292;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 146 KiB |
|
@ -1,13 +1,74 @@
|
||||||
body {
|
header, .layout-footer {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #51594e;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
padding: 1em;
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #727272;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a: hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #ff9292;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 112 KiB |
|
@ -1,13 +1,74 @@
|
||||||
body {
|
header, .layout-footer {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: url("/assets/seminar/background_style/13/top_bg.jpg") top left repeat-x #ebeef7;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
padding: 1em;
|
||||||
|
background: #1f1f25;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #96a1ca;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a: hover{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #ff9292;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -1,13 +1,81 @@
|
||||||
body {
|
header{
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
background: #3d3a39;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
.layout-content, .layout-footer{
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #f17655 url("/assets/seminar/background_style/14/top_bg.jpg") left top repeat-x;
|
||||||
|
background-position-y: 120px;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #ffa8a8;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #27d6c3;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 774 B |
|
@ -1,13 +1,78 @@
|
||||||
body {
|
header, .layout-content, .layout-footer{
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
background: #354752;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #ffffff url("/assets/seminar/background_style/15/top_bg.jpg") left top repeat-x;
|
||||||
|
background-position-y: 120px;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #ffa8a8;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #27d6c3;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #000;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 48 KiB |
|
@ -1,13 +1,78 @@
|
||||||
body {
|
header, .layout-content, .layout-footer{
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
background: #144015;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #344734;
|
||||||
|
border-top: 10px solid #ffc700;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #55ff3c;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #63ff0d;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 112 KiB |
After Width: | Height: | Size: 17 KiB |
|
@ -1,13 +1,77 @@
|
||||||
body {
|
.layout-footer-inner {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
background: url("/assets/seminar/background_style/17/bottom_bg.jpg") no-repeat scroll left top #1c2c46;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
header{
|
||||||
|
background: url("/assets/seminar/background_style/17/pageheader.jpg") no-repeat scroll left top #5b6986;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #5ceef3;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #302620;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #42fffc;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 3.8 KiB |
|
@ -1,13 +1,67 @@
|
||||||
body {
|
header, .layout-footer, .layout-footer-inner {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #eaeaea url("/assets/seminar/background_style/2/body.gif") left top repeat-x;
|
||||||
|
/*background: linear-gradient(to bottom, #303030 50%, #d4d3d3 50%);*/
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #606060;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a: hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #c8d7e3;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #c8d7e3;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 173 KiB |
|
@ -1,13 +1,78 @@
|
||||||
body {
|
.layout-footer-inner {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
background: #343434;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
background: url("/assets/seminar/background_style/3/pageheader.jpg") no-repeat scroll left top 1.5em transparent;
|
||||||
|
}
|
||||||
|
.layout-header > .container:before {
|
||||||
|
background: #cc3303;
|
||||||
|
width: 100%;
|
||||||
|
height: 1.5em;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #cab5b5;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #302620;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #302620;
|
||||||
|
text-decoration: none;
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #cb3303;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 643 B |
|
@ -1,13 +1,66 @@
|
||||||
body {
|
header, .layout-footer, .layout-footer-inner {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #ffffff url("/assets/seminar/background_style/4/body.jpg") left top repeat-x;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #606060;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a: hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #c8d7e3;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #73a119;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #000000;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 108 KiB |
|
@ -1,13 +1,72 @@
|
||||||
body {
|
.layout-footer, .layout-footer-inner {
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
background: #124206;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #606060;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #b5e850;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
text-align: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 103 KiB |
After Width: | Height: | Size: 731 B |
|
@ -1,13 +1,75 @@
|
||||||
body {
|
header, .layout-footer{
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
background: #DAEAF8;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #eaeef1 url("/assets/seminar/background_style/6/body.jpg") left top repeat-x;
|
||||||
|
background-position-y: 120px;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #6f6f70;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #2c6393;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #2c6393;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #f6ba34;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,10 +3,27 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
var body_image_pos_y = $('header').offset().top + $('header').height() - $('.modules-menu').height();
|
||||||
|
$("body").css("background-position-y",Math.ceil(body_image_pos_y)+"px");
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
|
var body_image_pos_y = $('header').offset().top + $('header').height() - $('.modules-menu').height();
|
||||||
|
$("body").css("background-position-y",Math.ceil(body_image_pos_y)+"px");
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
if($('.mobile-menu .modules-menu').length > 0){
|
if($('.mobile-menu .modules-menu').length > 0){
|
||||||
|
|
After Width: | Height: | Size: 119 KiB |
After Width: | Height: | Size: 1.3 KiB |
|
@ -1,13 +1,80 @@
|
||||||
body {
|
header{
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
.layout-content, .layout-footer{
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #361c44 url("/assets/seminar/background_style/7/body.jpg") left top repeat-x;
|
||||||
|
background-position-y: 120px;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #6f6f70;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #27d6c3;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 86 KiB |
|
@ -1,13 +1,82 @@
|
||||||
body {
|
.layout-content, header, .layout-footer{
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
.layout-footer .layout-footer-inner{
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header{
|
||||||
|
background: #01538f;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #cedee8;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #6f6f70;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a: hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #27d6c3;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 805 B |
|
@ -1,13 +1,80 @@
|
||||||
body {
|
header{
|
||||||
background-color: #c9d7e4;
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-footer-inner{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
.layout-content, .layout-footer{
|
||||||
|
background: #e3e3e3;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: #141414 url("/assets/seminar/background_style/9/body.jpg") left top repeat-x;
|
||||||
|
background-position-y: 120px;
|
||||||
|
}
|
||||||
|
.layout-footer-content, .layout-footer-inner,.layout-footer-content, .footer-counter{
|
||||||
|
color: #6f6f70;
|
||||||
|
}
|
||||||
|
.layout-footer-inner a:hover{
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
min-height: 100px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.seminar_hr{
|
||||||
|
border-top: 0.1em dashed #acacac;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav{
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a{
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-header .header-nav a:hover{
|
||||||
|
color: #a0ff24;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.container {
|
header, .container, .layout-footer-inner.container {
|
||||||
width: 46.875em;
|
width: 46.875em;
|
||||||
|
margin: auto;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-footer-inner.container {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
margin-top: 4em;
|
||||||
|
}
|
||||||
|
.layout-header #layout-navigation{
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.container {
|
header, .container, .navbar-brand {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.header-nav{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.layout-footer{
|
||||||
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,9 +3,21 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var timeout_id;
|
var timeout_id;
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
window.clearTimeout(timeout_id)
|
window.clearTimeout(timeout_id)
|
||||||
if (window.innerWidth < 768) {
|
if (window.innerWidth < 768) {
|
||||||
|
if($('.mobile-menu').length != 0){
|
||||||
|
timeout_id = setTimeout(function(){
|
||||||
|
if($('.mobile-menu .modules-menu').length == 0){
|
||||||
|
$(".modules-menu").appendTo('.mobile-menu');
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if($("div.aside").length == 0){
|
if($("div.aside").length == 0){
|
||||||
timeout_id = setTimeout(function(){
|
timeout_id = setTimeout(function(){
|
||||||
|
|
After Width: | Height: | Size: 148 KiB |
|
@ -35,6 +35,13 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
border: 2px solid #c2c0c0;
|
border: 2px solid #c2c0c0;
|
||||||
border-radius: 0.4em;
|
border-radius: 0.4em;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.modules-menu{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0 > li{
|
.modules-menu .modules-menu-level-0 > li{
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +1,28 @@
|
||||||
@media (min-width: 768px){
|
|
||||||
.modules-menu-level-0, #main-nav{
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.modules-menu-level-0 > li {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mobile-menu .modules-menu.collapse.in{
|
.mobile-menu .modules-menu.collapse.in{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
img.site-logo{
|
/*img.site-logo{
|
||||||
|
display: none;
|
||||||
|
}*/
|
||||||
|
.mobile-menu .modules-menu {
|
||||||
|
background: #2cafcc;
|
||||||
|
}
|
||||||
|
.mobile-menu .modules-menu .menu_text{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.layout-slide{
|
.layout-slide{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
|
.modules-menu-level-0, #main-nav{
|
||||||
|
display: inline-block;
|
||||||
|
padding: 1em 0 2em 0;
|
||||||
|
}
|
||||||
|
.modules-menu-level-0 > li {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
.modules-menu .modules-menu-level-0 > li > a {
|
.modules-menu .modules-menu-level-0 > li > a {
|
||||||
color: #c2c8bd;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
.layout-header > .container{
|
.layout-header > .container{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -26,9 +31,31 @@ img.site-logo{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu .modules-menu-level-0{
|
||||||
background: #4a4a4a;
|
background: #f3a84d;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0 1em;
|
border-radius: 0.4em;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.modules-menu{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li{
|
||||||
|
padding: 0.2em 0.3em;
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 0.1em solid #ffffff;
|
||||||
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover{
|
||||||
|
background-color: #f98902;
|
||||||
|
border-radius: unset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover > a {
|
||||||
|
color: #fff;
|
||||||
|
border-left: 9px solid #dbdada;
|
||||||
|
}
|
||||||
|
|
|
@ -1,19 +1,88 @@
|
||||||
.layout-content-inner{
|
.layout-content-inner{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
.seminar_h3{
|
/*.seminar_hr{
|
||||||
font-weight: bold;
|
display: none;
|
||||||
}
|
}*/
|
||||||
.seminar_hr{
|
.internal-page [class*=widget-title] , .seminar_h3{
|
||||||
border-top: 0.1em dashed #acacac;
|
|
||||||
margin: 0.5em 0;
|
|
||||||
}
|
|
||||||
[class*=widget-title] {
|
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
.internal-page [class*=widget-title] > * ,.internal-page #main-content [class*=page-title],.internal-page #main-content .index-title{
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
.internal-page .layout-content-inner a.btn-primary {
|
||||||
|
background: #a18a8b;
|
||||||
|
color: #ffffff;
|
||||||
|
border: none;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-content-inner h1,.layout-content-inner h2,.layout-content-inner h3,.layout-content-inner h4,.layout-content-inner h5,.layout-content-inner h6{
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
h4.w-annc__entry-title{
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a, .layout-content-inner #main-content a{
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a:hover, .layout-content-inner #main-content a:hover{
|
||||||
|
color: #888888;
|
||||||
|
}
|
||||||
|
.layout-content-inner a.btn-primary:hover,.layout-content-inner a.btn-primary:focus,.layout-content-inner a.btn-primary:active {
|
||||||
|
color: #ffffff;
|
||||||
|
background: #000000;
|
||||||
|
border: none;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row:before {
|
||||||
|
display: none;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
span.w-annc__postdate, .i-annc__postdate {
|
||||||
|
color: #787878;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row {
|
||||||
|
padding: 5px 0;
|
||||||
|
margin: 0;
|
||||||
|
border: none;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
|
display: block;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.w-annc{
|
||||||
|
border-bottom: 1px dashed #888888;
|
||||||
|
}
|
||||||
|
.layout-footer-content , .footer-counter{
|
||||||
|
color: #0f609a;
|
||||||
|
}
|
||||||
|
.widget-custom_gallery .row > .col-md-4{
|
||||||
|
border: 0.1em solid #b3b2b2;
|
||||||
|
}
|
||||||
|
.widget-custom_gallery .row > .col-md-4:hover{
|
||||||
|
border: 0.1em solid #396992;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px){
|
||||||
|
.w-annc:last-of-type{
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.layout-content{
|
.layout-content{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
|
.widget-custom_gallery .row > .col-md-4{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[data-pp="200"]{
|
||||||
|
padding: 0;
|
||||||
|
padding-right: 0.9375em;
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +1,28 @@
|
||||||
@media (min-width: 768px){
|
|
||||||
.modules-menu-level-0, #main-nav{
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.modules-menu-level-0 > li {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mobile-menu .modules-menu.collapse.in{
|
.mobile-menu .modules-menu.collapse.in{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
img.site-logo{
|
/*img.site-logo{
|
||||||
|
display: none;
|
||||||
|
}*/
|
||||||
|
.mobile-menu .modules-menu {
|
||||||
|
background: #2cafcc;
|
||||||
|
}
|
||||||
|
.mobile-menu .modules-menu .menu_text{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.layout-slide{
|
.layout-slide{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
|
.modules-menu-level-0, #main-nav{
|
||||||
|
display: inline-block;
|
||||||
|
padding: 1em 0 2em 0;
|
||||||
|
}
|
||||||
|
.modules-menu-level-0 > li {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
.modules-menu .modules-menu-level-0 > li > a {
|
.modules-menu .modules-menu-level-0 > li > a {
|
||||||
color: #c2c8bd;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
.layout-header > .container{
|
.layout-header > .container{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -26,9 +31,31 @@ img.site-logo{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu .modules-menu-level-0{
|
||||||
background: #4a4a4a;
|
background: #2a75a4;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0 1em;
|
border-radius: 0.4em;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.modules-menu{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li{
|
||||||
|
padding: 0.2em 0.3em;
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 0.1em solid #c2c0c0;
|
||||||
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover{
|
||||||
|
background-color: #646464;
|
||||||
|
border-radius: unset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover > a {
|
||||||
|
color: #ffffff;
|
||||||
|
border-left: 9px solid #ffffff;
|
||||||
|
}
|
||||||
|
|
|
@ -1,19 +1,82 @@
|
||||||
.layout-content-inner{
|
.layout-content-inner{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
.seminar_h3{
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.seminar_hr{
|
.seminar_hr{
|
||||||
border-top: 0.1em dashed #acacac;
|
display: none;
|
||||||
margin: 0.5em 0;
|
|
||||||
}
|
}
|
||||||
[class*=widget-title] {
|
.internal-page [class*=widget-title] , .seminar_h3{
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
color: #7aa5cc;
|
||||||
|
}
|
||||||
|
.internal-page [class*=widget-title] > * ,.internal-page #main-content [class*=page-title],.internal-page #main-content .index-title{
|
||||||
|
color: #7aa5cc;
|
||||||
|
}
|
||||||
|
.layout-content-inner a.btn-primary {
|
||||||
|
background: transparent;
|
||||||
|
color: #396992;
|
||||||
|
border: none;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.layout-content-inner h1,.layout-content-inner h2,.layout-content-inner h3,.layout-content-inner h4,.layout-content-inner h5,.layout-content-inner h6{
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
h4.w-annc__entry-title{
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a, .layout-content-inner #main-content a{
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a:hover, .layout-content-inner #main-content a:hover{
|
||||||
|
color: #888888;
|
||||||
|
}
|
||||||
|
.layout-content-inner a.btn-primary:hover,.layout-content-inner a.btn-primary:focus,.layout-content-inner a.btn-primary:active {
|
||||||
|
color: #033864;
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
text-decoration: underline;
|
||||||
|
outline: none;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row:before {
|
||||||
|
display: none;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
span.w-annc__postdate, .i-annc__postdate {
|
||||||
|
color: #787878;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row {
|
||||||
|
padding: 5px 0;
|
||||||
|
margin: 0;
|
||||||
|
border: none;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
|
display: block;
|
||||||
|
padding: 0;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
}
|
||||||
|
.w-annc{
|
||||||
|
border-bottom: 1px dashed #888888;
|
||||||
|
}
|
||||||
|
.layout-footer-content , .footer-counter{
|
||||||
|
color: #0f609a;
|
||||||
|
}
|
||||||
|
.widget-custom_gallery .row > .col-md-4{
|
||||||
|
border: 0.1em solid #b3b2b2;
|
||||||
|
}
|
||||||
|
.widget-custom_gallery .row > .col-md-4:hover{
|
||||||
|
border: 0.1em solid #396992;
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.layout-content{
|
.layout-content{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
|
.widget-custom_gallery .row > .col-md-4{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[data-pp="200"]{
|
||||||
|
padding: 0;
|
||||||
|
padding-right: 0.9375em;
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,15 +9,18 @@
|
||||||
.mobile-menu .modules-menu.collapse.in{
|
.mobile-menu .modules-menu.collapse.in{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
img.site-logo{
|
/*img.site-logo{
|
||||||
display: none;
|
display: none;
|
||||||
|
}*/
|
||||||
|
.mobile-menu .modules-menu {
|
||||||
|
background: #2cafcc;
|
||||||
}
|
}
|
||||||
.layout-slide{
|
.layout-slide{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.modules-menu .modules-menu-level-0 > li > a {
|
.modules-menu .modules-menu-level-0 > li > a {
|
||||||
color: #c2c8bd;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
.layout-header > .container{
|
.layout-header > .container{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -25,10 +28,16 @@ img.site-logo{
|
||||||
.navbar-collapse.collapse{
|
.navbar-collapse.collapse{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu,.modules-menu .modules-menu-level-0{
|
||||||
background: #4a4a4a;
|
background: #5cb65e;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
}
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover {
|
||||||
|
background-color: #4c8653;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover > a {
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,111 @@
|
||||||
.layout-content-inner{
|
[data-module="seminars_home"] .layout-content-inner{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-content-inner.container{
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
.box-social-share{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
[data-module="seminars_home"] .row .box-social-share > * > *{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
[data-module="seminars_home"] .row > * > * > * > *{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
|
padding: 0 1em;
|
||||||
|
}
|
||||||
|
[data-module="seminars_home"] .row > *, .row > * > *{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.seminar_h3{
|
.seminar_h3{
|
||||||
|
font-size: 1.5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
color: #ffc468;
|
||||||
|
margin-top: 0;
|
||||||
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
.seminar_hr{
|
.seminar_hr{
|
||||||
border-top: 0.1em dashed #acacac;
|
display: none;
|
||||||
margin: 0.5em 0;
|
}
|
||||||
|
.head_before{
|
||||||
|
writing-mode: vertical-rl;
|
||||||
|
text-orientation: mixed;
|
||||||
|
background: #ffc468;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
width: 1.1em;
|
||||||
|
height: 1.1em;
|
||||||
|
font-size: 1em;
|
||||||
|
padding-top: 0.3em;
|
||||||
|
margin-right: 0.3em;
|
||||||
|
margin-bottom: -0.2em;
|
||||||
}
|
}
|
||||||
[class*=widget-title] {
|
[class*=widget-title] {
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
color: #ffc468;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
[class*=widget-title] > * , #main-content [class*=page-title], #main-content .index-title{
|
||||||
|
color: #ffc468;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a, .layout-content-inner #main-content a{
|
||||||
|
color: #333333;
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a.btn-primary, .layout-content-inner #main-content a.btn-primary{
|
||||||
|
background: transparent;
|
||||||
|
text-decoration: none;
|
||||||
|
color: #2e2b44;
|
||||||
|
border: 0;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 0.3em;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a:hover, .layout-content-inner #main-content a:hover{
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
a.btn-primary:hover, a.btn-primary:focus, a.btn-primary:active {
|
||||||
|
color: #666666;
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
text-decoration: underline;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row:before {
|
||||||
|
display: none;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
span.w-annc__postdate, .i-annc__postdate {
|
||||||
|
color: #787878;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row {
|
||||||
|
border-bottom: 1px dashed #888888;
|
||||||
|
padding: 5px 0;
|
||||||
|
margin: 0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
|
display: block;
|
||||||
|
padding: 0;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
}
|
||||||
|
.layout-footer-content , .footer-counter{
|
||||||
|
color: #0f609a;
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.layout-content{
|
.layout-content{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (min-width: 992px){
|
||||||
|
[data-module="seminars_home"] .row > * > section:nth-of-type(1){
|
||||||
|
padding-right: 1em;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1 +1,2 @@
|
||||||
{ "template": "vertical_2_main_right_annc_left_album_bottom" }
|
{ "template": "horizontal_12_main_left_annc_right_album_right",
|
||||||
|
"main_content": "show_information"}
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,15 +9,18 @@
|
||||||
.mobile-menu .modules-menu.collapse.in{
|
.mobile-menu .modules-menu.collapse.in{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
img.site-logo{
|
/*img.site-logo{
|
||||||
display: none;
|
display: none;
|
||||||
|
}*/
|
||||||
|
.mobile-menu .modules-menu {
|
||||||
|
background: #2cafcc;
|
||||||
}
|
}
|
||||||
.layout-slide{
|
.layout-slide{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
.modules-menu .modules-menu-level-0 > li > a {
|
.modules-menu .modules-menu-level-0 > li > a {
|
||||||
color: #c2c8bd;
|
color: #b1e5ec;
|
||||||
}
|
}
|
||||||
.layout-header > .container{
|
.layout-header > .container{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -25,10 +28,16 @@ img.site-logo{
|
||||||
.navbar-collapse.collapse{
|
.navbar-collapse.collapse{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu,.modules-menu .modules-menu-level-0{
|
||||||
background: #4a4a4a;
|
background: #515d7b;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
}
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover {
|
||||||
|
background-color: #91BFEA;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover > a {
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,78 @@
|
||||||
.layout-content-inner{
|
.layout-content-inner{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.seminar_h3{
|
.seminar_h3{
|
||||||
|
display: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
color: #666666;
|
||||||
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
.seminar_hr{
|
.seminar_hr{
|
||||||
border-top: 0.1em dashed #acacac;
|
display: none;
|
||||||
margin: 0.5em 0;
|
}
|
||||||
|
.head_before{
|
||||||
|
writing-mode: vertical-rl;
|
||||||
|
text-orientation: mixed;
|
||||||
|
background: #666666;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
width: 1.1em;
|
||||||
|
height: 1.1em;
|
||||||
|
font-size: 1em;
|
||||||
|
padding-top: 0.3em;
|
||||||
|
margin-right: 0.3em;
|
||||||
|
margin-bottom: -0.2em;
|
||||||
}
|
}
|
||||||
[class*=widget-title] {
|
[class*=widget-title] {
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
.internal-page [class*=widget-title] > * ,.internal-page #main-content [class*=page-title],.internal-page #main-content .index-title{
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a, .layout-content-inner #main-content a{
|
||||||
|
color: #666666;
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a.btn-primary, .layout-content-inner #main-content a.btn-primary{
|
||||||
|
background: transparent;
|
||||||
|
color: #489fc1;
|
||||||
|
border: 0.1em solid #489fc1;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0.3em;
|
||||||
|
}
|
||||||
|
.layout-content-inner [data-subpart-id] a:hover, .layout-content-inner #main-content a:hover{
|
||||||
|
color: #366cf3;
|
||||||
|
}
|
||||||
|
.internal-page a.btn-primary:hover,.internal-page a.btn-primary:focus,.internal-page a.btn-primary:active {
|
||||||
|
color: #000000;
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
text-decoration: underline;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row:before {
|
||||||
|
display: none;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
span.w-annc__postdate, .i-annc__postdate {
|
||||||
|
color: #787878;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
li.w-annc__item.row {
|
||||||
|
border-bottom: 1px dashed #888888;
|
||||||
|
padding: 5px 0;
|
||||||
|
margin: 0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.layout-footer-content , .footer-counter{
|
||||||
|
color: #0f609a;
|
||||||
}
|
}
|
||||||
@media (max-width: 767px){
|
@media (max-width: 767px){
|
||||||
.layout-content{
|
.layout-content{
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,16 @@
|
||||||
background: #e8e6e7;
|
background: #e8e6e7;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
border-radius: 0.4em;
|
border-radius: 0.4em;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.modules-menu{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0 > li{
|
.modules-menu .modules-menu-level-0 > li{
|
||||||
padding: 0.2em 0.3em;
|
padding: 0.2em 0.3em;
|
||||||
|
|
|
@ -3,14 +3,13 @@
|
||||||
}
|
}
|
||||||
.seminar_hr{
|
.seminar_hr{
|
||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
[class*=widget-title] , .seminar_h3{
|
.internal-page [class*=widget-title] , .seminar_h3{
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
[class*=widget-title] > * , #main-content [class*=page-title], #main-content .index-title{
|
.internal-page [class*=widget-title] > * ,.internal-page #main-content [class*=page-title],.internal-page #main-content .index-title{
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
.layout-content-inner a.btn-primary {
|
.layout-content-inner a.btn-primary {
|
||||||
|
@ -56,6 +55,7 @@ li.w-annc__item.row {
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border: none;
|
border: none;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
li.w-annc__item.row .w-annc__postdate-wrap {
|
li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -81,5 +81,6 @@ li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
[data-pp="200"]{
|
[data-pp="200"]{
|
||||||
padding: 0 0.9375em;
|
padding: 0;
|
||||||
|
padding-right: 0.9375em;
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,10 +30,20 @@
|
||||||
.navbar-collapse.collapse{
|
.navbar-collapse.collapse{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
.modules-menu{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu .modules-menu-level-0{
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
border-radius: 0.4em;
|
border-radius: 0.4em;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.aside{
|
||||||
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0 > li{
|
.modules-menu .modules-menu-level-0 > li{
|
||||||
padding: 0.2em 0.3em;
|
padding: 0.2em 0.3em;
|
||||||
|
|
|
@ -60,13 +60,11 @@ li.w-annc__item.row {
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border: none;
|
border: none;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
li.w-annc__item.row .w-annc__postdate-wrap {
|
li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.w-annc{
|
|
||||||
border-bottom: 1px dashed #888888;
|
|
||||||
}
|
|
||||||
.layout-footer-content , .footer-counter{
|
.layout-footer-content , .footer-counter{
|
||||||
color: #0f609a;
|
color: #0f609a;
|
||||||
}
|
}
|
||||||
|
@ -84,7 +82,7 @@ li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
.layout-content-inner {
|
.layout-content-inner {
|
||||||
margin-left: 0.9375em;
|
margin: 0;
|
||||||
}
|
}
|
||||||
.col-sm-6{
|
.col-sm-6{
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
@ -92,7 +90,18 @@ li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
.widget-custom_gallery .row > .col-md-4{
|
.widget-custom_gallery .row > .col-md-4{
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
.main-content, .w-annc{
|
||||||
|
border-bottom: 1px dashed #888888;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
@media (min-width: 768px){
|
||||||
|
section .page-content-box:nth-child(1){
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.main-content, .w-annc{
|
||||||
|
border-bottom: 1px dashed #888888;
|
||||||
|
}
|
||||||
|
.w-annc:last-of-type{
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,7 +1,10 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
if($('[data-pp="200"]').html().trim() == "" && $('[data-pp="200"]').html().trim() == ""){
|
||||||
|
$(".main-content").css("border-bottom","0");
|
||||||
|
}
|
||||||
})
|
})
|
|
@ -30,7 +30,18 @@
|
||||||
.navbar-collapse.collapse{
|
.navbar-collapse.collapse{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
.modules-menu{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-content-box{
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
.layout-content-box section {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu .modules-menu-level-0{
|
||||||
|
width: 100%;
|
||||||
background: #e8e6e7;
|
background: #e8e6e7;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
border-radius: 0.4em;
|
border-radius: 0.4em;
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
.layout-content-inner{
|
|
||||||
|
|
||||||
padding-left: 0.9375em;
|
|
||||||
}
|
|
||||||
.layout-content-inner [data-subpart-id], .layout-content-inner #main-content{
|
.layout-content-inner [data-subpart-id], .layout-content-inner #main-content{
|
||||||
background: #e8e6e6;
|
background: #e8e6e6;
|
||||||
}
|
}
|
||||||
|
@ -68,6 +64,7 @@ li.w-annc__item.row:before {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-family: fantasy;
|
font-family: fantasy;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
float: left;
|
||||||
}
|
}
|
||||||
span.w-annc__postdate, .i-annc__postdate {
|
span.w-annc__postdate, .i-annc__postdate {
|
||||||
color: #787878;
|
color: #787878;
|
||||||
|
@ -78,6 +75,9 @@ li.w-annc__item.row {
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px dashed #888888;
|
border-bottom: 1px dashed #888888;
|
||||||
}
|
}
|
||||||
|
li.w-annc__item.row:last-of-type{
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
li.w-annc__item.row .w-annc__postdate-wrap {
|
li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
@ -98,7 +98,8 @@ li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
.layout-content-inner {
|
.layout-content-inner {
|
||||||
margin-left: 0.9375em;
|
margin-left: 0;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
.col-sm-6{
|
.col-sm-6{
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
@ -110,6 +111,15 @@ li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
.widget-custom_gallery .row > .col-md-4{
|
.widget-custom_gallery .row > .col-md-4{
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-content-box{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-content-box > *{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
[data-pp="200"] [data-subpart-id]:first-of-type{
|
[data-pp="200"] [data-subpart-id]:first-of-type{
|
||||||
border-top: none;
|
border-top: none;
|
||||||
|
@ -120,6 +130,8 @@ li.w-annc__item.row .w-annc__postdate-wrap {
|
||||||
.widget-custom_gallery .row > .col-md-4:hover{
|
.widget-custom_gallery .row > .col-md-4:hover{
|
||||||
border: 0.1em solid #396992;
|
border: 0.1em solid #396992;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px){
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
@media (min-width: 768px){
|
||||||
}
|
}
|
|
@ -1,10 +1,10 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$("[data-subpart-id],#main-content").each(function(i,v){
|
$("[data-subpart-id],#main-content").each(function(i,v){
|
||||||
if($(v).html().trim() != ""){
|
if($(v).parent(".body-banner").length == 0 && $(v).html().trim() != ""){
|
||||||
$(v).css("padding","1em");
|
$(v).css("padding","1em");
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
.navbar-collapse.collapse{
|
.navbar-collapse.collapse{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu,.modules-menu .modules-menu-level-0{
|
||||||
background: #4a4a4a;
|
background: #4a4a4a;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
|
|
|
@ -2,16 +2,26 @@
|
||||||
background: #efefb2;
|
background: #efefb2;
|
||||||
}
|
}
|
||||||
.seminar_h3{
|
.seminar_h3{
|
||||||
font-weight: bold;
|
margin: 0.5em 0;
|
||||||
|
font-weight: 400;
|
||||||
color: #2ebf21;
|
color: #2ebf21;
|
||||||
|
font-size: 1.5em;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
[class*=widget-title]:before, #main-content [class*=page-title]:before, #main-content .index-title:before ,.seminar_h3:before{
|
||||||
|
content: "\f009";
|
||||||
|
font-family: 'FontAwesome';
|
||||||
|
padding-right: 0.2em;
|
||||||
}
|
}
|
||||||
.seminar_hr{
|
.seminar_hr{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
[class*=widget-title] {
|
.internal-page [class*=widget-title] {
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
line-height: 1.5;
|
font-weight: 400;
|
||||||
color: #2ebf21;
|
color: #2ebf21;
|
||||||
|
font-size: 1.5em;
|
||||||
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
[class*=widget-title] > * , #main-content [class*=page-title], #main-content .index-title{
|
[class*=widget-title] > * , #main-content [class*=page-title], #main-content .index-title{
|
||||||
color: #2ebf21;
|
color: #2ebf21;
|
||||||
|
@ -27,13 +37,20 @@ a.w-annc__more {
|
||||||
.layout-content-inner [data-subpart-id] a:hover, .layout-content-inner #main-content a:hover{
|
.layout-content-inner [data-subpart-id] a:hover, .layout-content-inner #main-content a:hover{
|
||||||
color: #0f7c04;
|
color: #0f7c04;
|
||||||
}
|
}
|
||||||
a.w-annc__more:hover, a.w-annc__more.btn-primary:focus, a.w-annc__more:active {
|
a.btn-primary{
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
a.btn-primary:hover, a.btn-primary:focus, a.btn-primary:active {
|
||||||
color: #0f7c04;
|
color: #0f7c04;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
li.w-annc__item.row .w-annc__postdate-wrap .fa-calendar-o{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
li.w-annc__item.row:before {
|
li.w-annc__item.row:before {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
content: " ";
|
content: " ";
|
||||||
|
@ -51,6 +68,7 @@ li.w-annc__item.row {
|
||||||
border-bottom: 1px dashed #888888;
|
border-bottom: 1px dashed #888888;
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
.layout-footer-content , .footer-counter{
|
.layout-footer-content , .footer-counter{
|
||||||
color: #0f609a;
|
color: #0f609a;
|
||||||
|
@ -60,3 +78,6 @@ li.w-annc__item.row {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,11 @@
|
||||||
.mobile-menu .modules-menu.collapse.in{
|
.mobile-menu .modules-menu.collapse.in{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
img.site-logo{
|
/*img.site-logo{
|
||||||
display: none;
|
display: none;
|
||||||
|
}*/
|
||||||
|
.mobile-menu .modules-menu {
|
||||||
|
background: #2cafcc;
|
||||||
}
|
}
|
||||||
.layout-slide{
|
.layout-slide{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -25,10 +28,16 @@ img.site-logo{
|
||||||
.navbar-collapse.collapse{
|
.navbar-collapse.collapse{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu,.modules-menu .modules-menu-level-0{
|
||||||
background: #4a4a4a;
|
background: #4a4a4a;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
}
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover {
|
||||||
|
background-color: #91BFEA;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.modules-menu .modules-menu-level-0 > li:hover > a {
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[class*=widget-title], .layout-content-box h3, .layout-content-box h1, .layout-content-box .w-annc__widget-title1{
|
.internal-page [class*=widget-title],.internal-page .layout-content-box h3,.internal-page .layout-content-box h1,.internal-page .layout-content-box .w-annc__widget-title1{
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
border: 0.1em solid #8a8a88;
|
border: 0.1em solid #8a8a88;
|
||||||
|
@ -40,12 +40,19 @@ li.w-annc__item.row:before{
|
||||||
background: #e9e9e9;
|
background: #e9e9e9;
|
||||||
}
|
}
|
||||||
.layout-content-box [class*="annc__title"]:hover, a.btn-primary:hover, .layout-content-box a:hover{
|
.layout-content-box [class*="annc__title"]:hover, a.btn-primary:hover, .layout-content-box a:hover{
|
||||||
color: #9fca8f;
|
color: #4db924;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.layout-content-box [class*="annc__title"], .layout-content-box a{
|
||||||
|
color: #333333;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
.w-annc__postdate-wrap{
|
.w-annc__postdate-wrap{
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
}
|
}
|
||||||
.w-annc__postdate-wrap {
|
.w-annc__postdate-wrap {
|
||||||
color: #c0c0c0;
|
color: #a4a4a4;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"]').each(function(i,h3){
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
||||||
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
||||||
$(h3).after("<hr class=\"seminar_hr\">")
|
$(h3).after("<hr class=\"seminar_hr\">")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
.mobile-menu .modules-menu.collapse.in{
|
.mobile-menu .modules-menu.collapse.in{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
img.site-logo{
|
/*img.site-logo{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}*/
|
||||||
.layout-slide{
|
.layout-slide{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -36,9 +36,9 @@ img.site-logo{
|
||||||
.navbar-collapse.collapse{
|
.navbar-collapse.collapse{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.modules-menu .modules-menu-level-0{
|
.modules-menu, .modules-menu .modules-menu-level-0{
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0 1em;
|
padding: 0;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,13 @@
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
.seminar_h3{
|
.seminar_h3{
|
||||||
|
background: #a52d14;
|
||||||
|
font-size: 1.3em;
|
||||||
|
color: #ecd4cf;
|
||||||
|
line-height: 1.5;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2em 0.5em;
|
||||||
}
|
}
|
||||||
.seminar_hr{
|
.seminar_hr{
|
||||||
border-top: 0.1em dashed #ecd4cf;
|
border-top: 0.1em dashed #ecd4cf;
|
||||||
|
@ -19,12 +25,9 @@
|
||||||
}
|
}
|
||||||
.layout-content-box h3, .layout-content-box h1,.layout-content-box .i-annc .i-annc__th{
|
.layout-content-box h3, .layout-content-box h1,.layout-content-box .i-annc .i-annc__th{
|
||||||
background: #a52d14;
|
background: #a52d14;
|
||||||
color: #ecd4cf !important;
|
color: #ecd4cf;
|
||||||
padding: 0.2em;
|
margin: 0;
|
||||||
padding-left: 0.5em;
|
padding: 0.2em 0.5em;
|
||||||
margin-bottom: 0em !important;
|
|
||||||
margin-top: 0em !important;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
.layout-content-box .i-annc .i-annc__th{
|
.layout-content-box .i-annc .i-annc__th{
|
||||||
border-top: 0.1em solid #de9485;
|
border-top: 0.1em solid #de9485;
|
||||||
|
@ -32,8 +35,8 @@
|
||||||
h1.i-annc__page-title:not(:empty) {
|
h1.i-annc__page-title:not(:empty) {
|
||||||
border-bottom: 0.1em dashed #de9485;
|
border-bottom: 0.1em dashed #de9485;
|
||||||
}
|
}
|
||||||
.layout-content-box h3{
|
.internal-page .layout-content-box h3{
|
||||||
font-size: 1.3em !important;
|
font-size: 1.3em;
|
||||||
}
|
}
|
||||||
.layout-content-box h3,.layout-content-box h1{
|
.layout-content-box h3,.layout-content-box h1{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -48,6 +51,9 @@ a[class*="more"],a.btn-primary {
|
||||||
li.w-annc__item.row:before{
|
li.w-annc__item.row:before{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.w-annc a.w-annc__title {
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
.layout-content-box a:hover, .layout-content-box .w-annc__title:hover{
|
.layout-content-box a:hover, .layout-content-box .w-annc__title:hover{
|
||||||
color: #a52d14;
|
color: #a52d14;
|
||||||
}
|
}
|
||||||
|
@ -75,3 +81,20 @@ a[class*="more"]:hover,a.btn-primary:hover {
|
||||||
tbody td, tbody td a, .i-annc a.i-annc__title{
|
tbody td, tbody td a, .i-annc a.i-annc__title{
|
||||||
color: #9b9b9b;
|
color: #9b9b9b;
|
||||||
}
|
}
|
||||||
|
.mainContent{
|
||||||
|
background: #ffffff;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.layout-content{
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.body-banner{
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.row, .layout-content-box{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#seminar_content{
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
|
@ -1,2 +1,3 @@
|
||||||
{ "template": "vertical_7_main_right_annc_left_album_bottom",
|
{ "template": "vertical_7_main_right_annc_left_album_bottom",
|
||||||
"read_more_position": "lower_right" }
|
"read_more_position": "lower_right",
|
||||||
|
"main_content": "show_information"}
|