| 1 |
|
| 2 |
/* ~~ Top Navigation Bar ~~ */ |
| 3 |
|
| 4 |
.ays-notice-banner{ |
| 5 |
width: calc(100% - 20px); |
| 6 |
background-color: #0093E9; |
| 7 |
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%); |
| 8 |
|
| 9 |
} |
| 10 |
|
| 11 |
.ays-notice-banner #navigation-container { |
| 12 |
width: 100%; |
| 13 |
margin: 0 auto; |
| 14 |
display: flex; |
| 15 |
flex-direction: row; |
| 16 |
flex-wrap: nowrap; |
| 17 |
justify-content: space-between; |
| 18 |
align-items: stretch; |
| 19 |
align-content: stretch; |
| 20 |
} |
| 21 |
|
| 22 |
.ays-notice-banner .navigation-bar { |
| 23 |
width: 100%; |
| 24 |
text-align:center; |
| 25 |
} |
| 26 |
.ays-notice-banner .navigation-bar a.logo-container{ |
| 27 |
margin: 0 0 0 20px; |
| 28 |
} |
| 29 |
.ays-notice-banner .navigation-bar a.logo-container .logo { |
| 30 |
float: left; |
| 31 |
width: 80px; |
| 32 |
} |
| 33 |
.ays-notice-banner .navigation-bar ul { |
| 34 |
display: flex; |
| 35 |
flex-direction: row; |
| 36 |
flex-wrap: nowrap; |
| 37 |
justify-content: flex-end; |
| 38 |
align-items: stretch; |
| 39 |
align-content: stretch; |
| 40 |
padding: 0; |
| 41 |
margin: 0 20px 0 0; |
| 42 |
max-width: 100%; |
| 43 |
min-width: 200px; |
| 44 |
width: 100%; |
| 45 |
} |
| 46 |
|
| 47 |
.ays-notice-banner .navigation-bar li { |
| 48 |
padding: 0px; |
| 49 |
margin-top: 4px; |
| 50 |
margin-bottom: 4px; |
| 51 |
margin-right: 15px; |
| 52 |
} |
| 53 |
|
| 54 |
.ays-notice-banner .navigation-bar li.take_survay a:hover:after { |
| 55 |
border-color: #f50057; |
| 56 |
} |
| 57 |
|
| 58 |
.ays-notice-banner .navigation-bar li.take_survay a { |
| 59 |
color: #f50057; |
| 60 |
} |
| 61 |
|
| 62 |
.ays-notice-banner .navigation-bar li a { |
| 63 |
color: #fff; |
| 64 |
cursor: pointer; |
| 65 |
font-size: 16px; |
| 66 |
font-weight: 400; |
| 67 |
line-height: 45px; |
| 68 |
margin: 0 0 2em; |
| 69 |
max-width: 160px; |
| 70 |
position: relative; |
| 71 |
text-decoration: none; |
| 72 |
text-transform: uppercase; |
| 73 |
width: 100%; |
| 74 |
letter-spacing: 0; |
| 75 |
} |
| 76 |
|
| 77 |
.ays-notice-banner .navigation-bar li a:after { |
| 78 |
-webkit-backface-visibility: hidden; |
| 79 |
backface-visibility: hidden; |
| 80 |
border: 1px solid rgba(255, 255, 255, 0); |
| 81 |
bottom: 0; |
| 82 |
content: " "; |
| 83 |
display: block; |
| 84 |
margin: 0 auto; |
| 85 |
position: relative; |
| 86 |
transition: all 280ms ease-in-out; |
| 87 |
width: 0; |
| 88 |
} |
| 89 |
|
| 90 |
.ays-notice-banner .navigation-bar li a:hover:after{ |
| 91 |
-webkit-backface-visibility: hidden; |
| 92 |
backface-visibility: hidden; |
| 93 |
border-color: #fff; |
| 94 |
transition: width 350ms ease-in-out; |
| 95 |
width: 100%; |
| 96 |
} |
| 97 |
.ays-notice-banner .modile-ddmenu-lg { |
| 98 |
display: none; |
| 99 |
} |
| 100 |
|
| 101 |
.ays-notice-banner .modile-ddmenu-sm, |
| 102 |
.ays-notice-banner .modile-ddmenu-md { |
| 103 |
display: none; |
| 104 |
position: relative; |
| 105 |
width: 80px; |
| 106 |
} |
| 107 |
|
| 108 |
.ays-notice-banner #menu li a.toggle_ddmenu { |
| 109 |
font-size:25px; |
| 110 |
color:#fff; |
| 111 |
width: 100%; |
| 112 |
} |
| 113 |
|
| 114 |
.ays-notice-banner #menu li a.toggle_ddmenu i.ays_fa{ |
| 115 |
transition: .1s cubic-bezier(0.68, -0.55, 0.265, 1.55); |
| 116 |
} |
| 117 |
|
| 118 |
.ays-notice-banner li ul.ddmenu { |
| 119 |
display: none; |
| 120 |
position: absolute; |
| 121 |
right: -55px; |
| 122 |
top: 50px; |
| 123 |
z-index: 10000; |
| 124 |
flex-direction: column; |
| 125 |
width: fit-content; |
| 126 |
min-width: 200px; |
| 127 |
text-align: left; |
| 128 |
background-color: #0093E9; |
| 129 |
background-image: linear-gradient(-160deg, #80D0C7 0%, #0093E9 100%); |
| 130 |
} |
| 131 |
|
| 132 |
.ays-notice-banner li ul.ddmenu[data-expanded="true"] { |
| 133 |
display: flex; |
| 134 |
animation: slideInRight .2s; |
| 135 |
} |
| 136 |
|
| 137 |
.ays-notice-banner li ul.ddmenu li { |
| 138 |
padding-left: 20px; |
| 139 |
} |
| 140 |
|
| 141 |
@media screen and (min-width: 1080px){ |
| 142 |
.ays-notice-banner .modile-ddmenu-lg { |
| 143 |
display: block; |
| 144 |
} |
| 145 |
} |
| 146 |
|
| 147 |
@media screen and (max-width: 1080px){ |
| 148 |
.ays-notice-banner .modile-ddmenu-md { |
| 149 |
display: block; |
| 150 |
} |
| 151 |
} |
| 152 |
@media screen and (max-width: 768px){ |
| 153 |
.ays-notice-banner .modile-ddmenu-sm { |
| 154 |
display: block; |
| 155 |
} |
| 156 |
.ays-notice-banner .modile-ddmenu-md { |
| 157 |
display: none; |
| 158 |
} |
| 159 |
} |
| 160 |
@media screen and (max-width: 530px){ |
| 161 |
.ays-notice-banner .modile-ddmenu-sm { |
| 162 |
display: block; |
| 163 |
} |
| 164 |
.ays-notice-banner .modile-ddmenu-md { |
| 165 |
display: none; |
| 166 |
} |
| 167 |
.ays-notice-banner .modile-ddmenu-xs { |
| 168 |
display: none; |
| 169 |
} |
| 170 |
} |
| 171 |
|
| 172 |
|
| 173 |
/* ~~ Top Navigation Bar ~~ */ |