|
@@ -2,6 +2,40 @@ body {
|
|
|
font-family: 'Helvetica Neue';
|
|
|
}
|
|
|
|
|
|
+.sec-00 {
|
|
|
+ height: 250px;
|
|
|
+ -webkit-transition-property: height;
|
|
|
+ transition-property: height;
|
|
|
+ -webkit-transition-duration: 500ms;
|
|
|
+ transition-duration: 500ms;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-00__close {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 20px;
|
|
|
+ width: 50px;
|
|
|
+ height: 30px;
|
|
|
+ background-color: rgba(255, 255, 255, 0.66);
|
|
|
+ border-radius: 0 0 50px 50px;
|
|
|
+ color: #888;
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+ font-size: 11px;
|
|
|
+ -webkit-box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
|
|
|
+ box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
|
|
|
+ line-height: 12px;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-00.bannerClose {
|
|
|
+ height: 0;
|
|
|
+ overflow: hidden;
|
|
|
+ -webkit-transition-property: height;
|
|
|
+ transition-property: height;
|
|
|
+ -webkit-transition-duration: 500ms;
|
|
|
+ transition-duration: 500ms;
|
|
|
+}
|
|
|
+
|
|
|
.sec-00 .container-fluid {
|
|
|
background-color: #cacaca;
|
|
|
height: 250px;
|
|
@@ -34,6 +68,18 @@ body {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+@-webkit-keyframes slidein {
|
|
|
+ 100% {
|
|
|
+ height: 0px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes slidein {
|
|
|
+ 100% {
|
|
|
+ height: 0px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
.navbar {
|
|
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
|
-webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
@@ -435,7 +481,7 @@ body {
|
|
|
}
|
|
|
|
|
|
.navbar-main.sticky + .sec-02 {
|
|
|
- padding-top: 55px;
|
|
|
+ padding-top: 53.5px;
|
|
|
}
|
|
|
|
|
|
.sec-02__slider {
|