New logo + animation
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -61,7 +61,7 @@ a {
|
|||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&.parent {
|
&.parent {
|
||||||
>a {
|
> a {
|
||||||
@include respond-above(xs) {
|
@include respond-above(xs) {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
@@ -97,17 +97,17 @@ a {
|
|||||||
.level-0 {
|
.level-0 {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
>li {
|
> li {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
>a {
|
> a {
|
||||||
color: $cTxtGray;
|
color: $cTxtGray;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
&#link-8 {
|
&#link-8 {
|
||||||
>a {
|
> a {
|
||||||
color: $cTxtWhite;
|
color: $cTxtWhite;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
font-size: 23px;
|
font-size: 23px;
|
||||||
@@ -618,6 +618,100 @@ header {
|
|||||||
max-width: 150px;
|
max-width: 150px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header-logo {
|
||||||
|
min-height: 52px;
|
||||||
|
min-width: 120px;
|
||||||
|
|
||||||
|
.box-logo-relative {
|
||||||
|
position: relative;
|
||||||
|
transform-style: preserve-3d;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
.box-logo-absolute {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width: 120px;
|
||||||
|
height: 52px;
|
||||||
|
object-fit: contain;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
-moz-animation: action-logo 4s linear infinite alternate;
|
||||||
|
-webkit-animation: action-logo 4s linear infinite alternate;
|
||||||
|
-ms-animation: none;
|
||||||
|
|
||||||
|
&.box-logo-absolute-front {
|
||||||
|
}
|
||||||
|
&.box-logo-absolute-back {
|
||||||
|
transform: rotateY(180deg);
|
||||||
|
-moz-animation: action-logo-back 4s linear infinite alternate;
|
||||||
|
-webkit-animation: action-logo-back 4s linear infinite alternate;
|
||||||
|
-ms-animation: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 52px;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes action-logo {
|
||||||
|
0% {
|
||||||
|
transform: rotateY(0);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
40% {
|
||||||
|
transform: rotateY(0);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
61% {
|
||||||
|
transform: rotateY(180deg);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: rotateY(180deg);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes action-logo-back {
|
||||||
|
0% {
|
||||||
|
transform: rotateY(180deg);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
40% {
|
||||||
|
transform: rotateY(180deg);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
61% {
|
||||||
|
transform: rotateY(0);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: rotateY(0);
|
||||||
|
backface-visibility: hidden;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.header_right {
|
.header_right {
|
||||||
@@ -675,14 +769,14 @@ header {
|
|||||||
li {
|
li {
|
||||||
&.parent {
|
&.parent {
|
||||||
&:hover {
|
&:hover {
|
||||||
>a {
|
> a {
|
||||||
&::before {
|
&::before {
|
||||||
width: calc(100% - 23px);
|
width: calc(100% - 23px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
>a {
|
> a {
|
||||||
&::after {
|
&::after {
|
||||||
content: url('/upload/filemanager/Icons/mini_arrow_bottom_new.svg');
|
content: url('/upload/filemanager/Icons/mini_arrow_bottom_new.svg');
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@@ -698,7 +792,7 @@ header {
|
|||||||
@include respond-below(md) {
|
@include respond-below(md) {
|
||||||
li {
|
li {
|
||||||
&.parent {
|
&.parent {
|
||||||
>a {
|
> a {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -722,7 +816,7 @@ header {
|
|||||||
|
|
||||||
li {
|
li {
|
||||||
&.parent {
|
&.parent {
|
||||||
>a {
|
> a {
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
|
|
||||||
@include respond-above(md) {
|
@include respond-above(md) {
|
||||||
@@ -732,7 +826,7 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
>a {
|
> a {
|
||||||
&::before {
|
&::before {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
@@ -814,7 +908,7 @@ header {
|
|||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
>li {
|
> li {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
@include respond-below(md) {
|
@include respond-below(md) {
|
||||||
@@ -877,10 +971,10 @@ header {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
>li {
|
> li {
|
||||||
@include respond-above(md) {
|
@include respond-above(md) {
|
||||||
&:hover {
|
&:hover {
|
||||||
>a {
|
> a {
|
||||||
&::after {
|
&::after {
|
||||||
transform: rotate(-90deg);
|
transform: rotate(-90deg);
|
||||||
}
|
}
|
||||||
@@ -924,7 +1018,7 @@ header {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
>a {
|
> a {
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1003,7 +1097,7 @@ header {
|
|||||||
height: 400px;
|
height: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
>div {
|
> div {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1272,7 +1366,7 @@ header {
|
|||||||
background-color: $cSandDarker;
|
background-color: $cSandDarker;
|
||||||
}
|
}
|
||||||
|
|
||||||
>.row {
|
> .row {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1290,7 +1384,8 @@ header {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.col-right {}
|
.col-right {
|
||||||
|
}
|
||||||
|
|
||||||
@include respond-below(md) {
|
@include respond-below(md) {
|
||||||
&::before {
|
&::before {
|
||||||
@@ -2036,7 +2131,7 @@ header {
|
|||||||
|
|
||||||
li {
|
li {
|
||||||
a {
|
a {
|
||||||
border: 1px solid #D4D4D4;
|
border: 1px solid #d4d4d4;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -2057,11 +2152,11 @@ header {
|
|||||||
top: -2px;
|
top: -2px;
|
||||||
content: '';
|
content: '';
|
||||||
display: flex;
|
display: flex;
|
||||||
background: url('/upload/filemanager/Icons/icon-file.svg') no-repeat center;
|
background: url('/upload/filemanager/Icons/icon-file.svg') no-repeat
|
||||||
|
center;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|||||||
@@ -6,10 +6,24 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="header__wrapper">
|
<div class="header__wrapper">
|
||||||
<div class="header_left">
|
<div class="header_left">
|
||||||
<a href="/">
|
<!-- <a href="/">
|
||||||
<img src="/upload/filemanager/Logos/logo-black.svg" alt="">
|
<img src="/upload/filemanager/Logos/logo-black.svg" alt="">
|
||||||
|
</a> -->
|
||||||
|
<div class="header-logo">
|
||||||
|
<div class="box-logo-relative">
|
||||||
|
<div class="box-logo-absolute box-logo-absolute-front">
|
||||||
|
<a href="/">
|
||||||
|
<img src="/upload/filemanager/Logos/VIDOK-logo-new.png" alt="logo">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="box-logo-absolute box-logo-absolute-back">
|
||||||
|
<a href="/">
|
||||||
|
<img src="/upload/filemanager/Logos/VIDOK-COM_ENG.png" alt="logo">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="header_right">
|
<div class="header_right">
|
||||||
<nav id="advance_menu">
|
<nav id="advance_menu">
|
||||||
<ul class="lvl_1">
|
<ul class="lvl_1">
|
||||||
|
|||||||
Reference in New Issue
Block a user