PluginProbe
Chartify – WordPress Chart Plugin / 3.5.2
Chartify – WordPress Chart Plugin v3.5.2
3.8.0 3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 trunk 1.0.0 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 All 83 releases
chart-builder / admin / css / banner.css

banner.css in Chartify – WordPress Chart Plugin 3.5.2, at admin/css/banner.css

292 lines 6.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* ~~ Top Navigation Bar ~~ */
2
3 .ays-notice-banner{
4 width: calc(100% - 20px);
5 /* background-color: #0093E9;
6 background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%); */
7 background-color: #F8F8F8;
8 box-shadow: 0px 3px 4px 0px rgb(188 198 216 / 11%);
9 border-radius: 0px 0px 12px 12px;
10 background-image: unset;
11 padding-bottom:10px;
12 padding-left:10px;
13 padding-top: 15px;
14 }
15
16 .ays-notice-banner #navigation-container {
17 width: 100%;
18 margin: 0 auto;
19 display: flex;
20 flex-direction: row;
21 flex-wrap: nowrap;
22 justify-content: space-between;
23 align-items: stretch;
24 align-content: stretch;
25 /* padding-top: 20px; */
26 gap:5px;
27 }
28
29 .ays-notice-banner .navigation-bar {
30 width: 100%;
31 text-align:center;
32 }
33 /* .ays-notice-banner .navigation-bar a.logo-container{
34 margin: 0 0 0 20px;
35 } */
36 .ays-notice-banner .navigation-bar a.logo-container .logo {
37 float: left;
38 width: 80px;
39 }
40 .ays-notice-banner .navigation-bar ul {
41 display: flex;
42 flex-direction: row;
43 flex-wrap: nowrap;
44 justify-content: flex-end;
45 align-items: baseline;
46 align-content: stretch;
47 padding: 0;
48 margin: 0 20px 0 0;
49 max-width: 100%;
50 /* min-width: 160px; */
51 width: 100%;
52 }
53
54 .ays-notice-banner .navigation-bar li {
55 padding: 0px;
56 margin-top: 8px;
57 margin-bottom: 4px;
58 margin-right: 44px;
59 }
60
61 /* .ays-notice-banner .navigation-bar li.take_survay a:hover:after {
62 border-color: #A9FF00;
63 } */
64
65 .ays-notice-banner .navigation-bar li:last-child {
66 margin-right: 0;
67 }
68
69
70 .ays-notice-banner .navigation-bar li.take_survay a {
71 /* color: #A9FF00; */
72 color: #F98A0C;
73 }
74
75 .ays-notice-banner .navigation-bar li.take_survay a:hover {
76 /* color: #C44949; */
77 color: #F98A0C;
78 }
79
80
81 .ays-notice-banner .navigation-bar li a {
82 /* color: #fff; */
83 color: #5561A3;
84 cursor: pointer;
85 font-size: 16px;
86 font-weight: 400;
87 line-height: 45px;
88 margin: 0 0 2em;
89 max-width: 160px;
90 position: relative;
91 text-decoration: none;
92 /* text-transform: uppercase; */
93 text-decoration: underline;
94 width: 100%;
95 letter-spacing: 0;
96 }
97
98 .ays-notice-banner .navigation-bar li a:after {
99 -webkit-backface-visibility: hidden;
100 backface-visibility: hidden;
101 border: 1px solid rgba(255, 255, 255, 0);
102 bottom: 0;
103 content: " ";
104 display: none;
105 margin: 0 auto;
106 position: relative;
107 transition: all 280ms ease-in-out;
108 width: 0;
109 }
110
111 /* .ays-notice-banner .navigation-bar li a:hover:after{
112 -webkit-backface-visibility: hidden;
113 backface-visibility: hidden;
114 border-color: #fff;
115 transition: width 350ms ease-in-out;
116 width: 100%;
117 } */
118
119 .ays-notice-banner .navigation-bar li a:hover{
120 outline: unset;
121 box-shadow: unset;
122 color: #3E477D;
123 }
124
125 .ays-notice-banner .modile-ddmenu-lg {
126 display: none;
127 }
128
129 .ays-notice-banner .modile-ddmenu-sm,
130 .ays-notice-banner .modile-ddmenu-md {
131 display: none;
132 position: relative;
133
134 }
135
136 .ays-notice-banner #menu li a.toggle_ddmenu {
137 font-size:25px;
138 /* color:#fff; */
139 color: #5561A3;
140 width: 100%;
141 }
142
143 .ays-notice-banner #menu li a.toggle_ddmenu i.ays_fa{
144 transition: .1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
145 }
146
147 .ays-notice-banner li ul.ddmenu {
148 display: none;
149 position: absolute;
150 right: -55px;
151 top: 50px;
152 z-index: 10000;
153 flex-direction: column;
154 width: fit-content;
155 min-width: 200px;
156 text-align: left;
157 /* background-color: #0093E9; */
158 /* background-image: linear-gradient(-160deg, #80D0C7 0%, #0093E9 100%); */
159 background-color: #FFFFFF;
160 background-image: unset;
161 box-shadow: 0px 4px 4px rgb(188 198 216 / 11%);
162
163 }
164
165 .ays-notice-banner li ul.ddmenu[data-expanded="true"] {
166 display: flex;
167 animation: slideInRight .2s;
168 }
169
170 .ays-notice-banner li ul.ddmenu li {
171 padding-left: 20px;
172 }
173
174 .ays-notice-banner .logo-container {
175 width:75px;
176 height:75px;
177 }
178
179 .ays-notice-banner .logo-container img {
180 width:100%;
181 height:100%;
182 object-fit:contain;
183 }
184
185 .ays-navigation-container-logo-upgrade-box {
186 display: flex;
187 gap: 25px;
188 align-items: center;
189 }
190
191 .ays-notice-banner a.ays-btn-upgrade:link, .ays-notice-banner a.ays-btn-upgrade:visited {
192 padding: 5px 18px;
193 border: 2px solid #10A37F;
194 border-radius: 30px;
195 color: #ffffff;
196 width: fit-content;
197 font-weight: 700;
198 font-size: 14px;
199 /* display: inline-block; */
200 display: flex;
201 text-decoration: none;
202 justify-content: space-between;
203 gap: 5px;
204 transition: .3s;
205 margin: auto;
206 margin-top: 6px;
207 background-color: #10a37f;
208 }
209
210 .ays-notice-banner #navigation-container a.ays-btn-upgrade:focus {
211 outline: none;
212 box-shadow: none;
213 }
214 .ays-notice-banner #navigation-container a.ays-btn-upgrade:hover {
215 background-color: #0d8165;
216 }
217 /* .ays-notice-banner #navigation-container a.ays-btn-upgrade:hover svg path {
218 transition: 0.3s;
219 fill: #ffffff !important;
220 } */
221
222 @media screen and (max-width: 530px) {
223 .ays-notice-banner #navigation-container a.ays-btn-upgrade {
224 padding: 5px 10px;
225 }
226 }
227
228 @media screen and (min-width: 1080px){
229 .ays-notice-banner .modile-ddmenu-lg {
230 display: block;
231 }
232 .ays-notice-banner .modile-ddmenu-sm {
233 display: none;
234 }
235 .ays-notice-banner .modile-ddmenu-md {
236 display: none;
237 }
238 .ays-notice-banner .modile-ddmenu-xs {
239 display: none;
240 }
241 }
242
243 @media screen and (max-width: 1080px){
244 .ays-notice-banner .modile-ddmenu-md {
245 display: block;
246 }
247 }
248
249 @media screen and (min-width: 531px) and (max-width: 768px){
250 .ays-notice-banner .modile-ddmenu-sm {
251 display: none;
252 }
253 .ays-notice-banner .modile-ddmenu-md {
254 display: block;
255 }
256
257 div.ays-notice-banner{
258 width: 100%;
259 }
260
261 }
262 @media screen and (max-width: 530px){
263 .ays-notice-banner .modile-ddmenu-sm {
264 display: block;
265 }
266 .ays-notice-banner .modile-ddmenu-md {
267 display: none;
268 }
269 .ays-notice-banner .modile-ddmenu-xs {
270 display: none;
271 }
272 .ays-navigation-container-logo-upgrade-box{
273 gap:5px
274 }
275 }
276
277 div#screen-meta-links .show-settings {
278 border: unset;
279 }
280
281 div#screen-meta {
282 border: unset;
283 border-bottom: 1px solid #c3c4c770;
284 }
285
286 .ays-fa-margin-right {
287 margin-right: 5px;
288 }
289
290
291
292 /* ~~ Top Navigation Bar ~~ */