diff --git a/Static/mdui-v1.0.1/css/ui.css b/Static/mdui-v1.0.1/css/ui.css index 2031358..ff87828 100644 --- a/Static/mdui-v1.0.1/css/ui.css +++ b/Static/mdui-v1.0.1/css/ui.css @@ -328,7 +328,7 @@ body { } .c-secttl:hover{ animation:color-block alternate 1s; - color: #247bfd; + color: #3f51b5; } @keyframes color-block { @@ -338,14 +338,14 @@ body { } to { - color: #247bfd; + color: #3f51b5; } } @keyframes color-fff { from { - color: #247bfd; + color: #3f51b5; } to { @@ -399,4 +399,83 @@ body { src: url('https://fonts.akass.cn/saira/v14/files/saira-latin-regular.woff2'); font-weight: normal; font-style: normal; -} \ No newline at end of file +} +.single_slide .slide_text h2 { + font-size: 50px; + text-transform: uppercase; + font-weight: 800; + color: #34495e; + letter-spacing: 2px; + font-family: 'Open Sans', sans-serif; + margin-bottom: 30px; +} + +.single_slide .slide_text h2 > span { + color: #3f51b5; +} + +.single_slide .slide_text h3 { + font-size: 20px; + font-weight: 300; + letter-spacing: 1px; + color: #354b60; +} +.table { + display: table; + z-index: 9; + position: absolute; + width: 100%; + height: 100%; +} + +.table_cell { + display: table-cell; + vertical-align: middle; +} + +/* ****************************** +:: 5.0 slider area css +****************************** */ + + +.single_slide { + position: relative; + z-index: 1; + background-position: center center; + background-size: cover; +} + +.single_slide:before { + position: absolute; + z-index: 9; + width: 100%; + height: 100%; + top: 0; + left: 0; + background-color: rgba(255, 255, 255, 0.1); + content: ""; +} + +.single_slide .slide_text { + position: absolute; + width: 100%; + left: 0; + top: 0; + height: 100%; + z-index: 999; + text-align: center; +} + +.single_slide .slide_text h2 { + font-size: 50px; + text-transform: uppercase; + font-weight: 800; + color: #34495e; + letter-spacing: 2px; + font-family: 'Open Sans', sans-serif; + margin-bottom: 30px; +} + +.single_slide .slide_text h2 > span { + color: #3f51b5; +} diff --git a/Static/mdui-v1.0.1/js/area.js b/Static/mdui-v1.0.1/js/area.js new file mode 100644 index 0000000..58d3b23 --- /dev/null +++ b/Static/mdui-v1.0.1/js/area.js @@ -0,0 +1,14 @@ +(function ($) { + 'use strict'; + $(window).on('resizeEnd', function () { + $(".welcome_area, .welcome_slides .single_slide, .single_slide").height($(window).height()); + }); + + $(window).on('resize', function () { + if (this.resizeTO) clearTimeout(this.resizeTO); + this.resizeTO = setTimeout(function () { + $(this).trigger('resizeEnd'); + }, 300); + }).trigger("resize"); + +})(jQuery); \ No newline at end of file diff --git a/index.html b/index.html index cc32af6..948bd86 100644 --- a/index.html +++ b/index.html @@ -100,44 +100,20 @@