PluginProbe
Chartify – WordPress Chart Plugin / 3.1.4
Chartify – WordPress Chart Plugin v3.1.4
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.1.4, at admin/css/banner.css

292 lines 6.3 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 }
27
28 .ays-notice-banner .navigation-bar {
29 width: 100%;
30 text-align:center;
31 }
32 /* .ays-notice-banner .navigation-bar a.logo-container{
33 margin: 0 0 0 20px;
34 } */
35 .ays-notice-banner .navigation-bar a.logo-container .logo {
36 float: left;
37 width: 80px;
38 }
39 .ays-notice-banner .navigation-bar ul {
40 display: flex;
41 flex-direction: row;
42 flex-wrap: nowrap;
43 justify-content: flex-end;
44 align-items: flex-end;
45 align-content: stretch;
46 padding: 0;
47 margin: 0 20px 0 0;
48 max-width: 100%;
49 min-width: 160px;
50 width: 100%;
51 }
52
53 .ays-notice-banner .navigation-bar li {
54 padding: 0px;
55 margin-top: 4px;
56 margin-bottom: 4px;
57 margin-right: 44px;
58 }
59
60 /* .ays-notice-banner .navigation-bar li.take_survay a:hover:after {
61 border-color: #A9FF00;
62 } */
63
64 .ays-notice-banner .navigation-bar li:last-child {
65 margin-right: 0;
66 }
67
68
69 .ays-notice-banner .navigation-bar li.take_survay a {
70 /* color: #A9FF00; */
71 color: #F98A0C;
72 }
73
74 .ays-notice-banner .navigation-bar li.take_survay a:hover {
75 /* color: #C44949; */
76 color: #F98A0C;
77 }
78
79
80 .ays-notice-banner .navigation-bar li a {
81 /* color: #fff; */
82 color: #5561A3;
83 cursor: pointer;
84 font-size: 16px;
85 font-weight: 400;
86 line-height: 45px;
87 margin: 0 0 2em;
88 max-width: 160px;
89 position: relative;
90 text-decoration: none;
91 /* text-transform: uppercase; */
92 text-decoration: underline;
93 width: 100%;
94 letter-spacing: 0;
95 }
96
97 .ays-notice-banner .navigation-bar li a:after {
98 -webkit-backface-visibility: hidden;
99 backface-visibility: hidden;
100 border: 1px solid rgba(255, 255, 255, 0);
101 bottom: 0;
102 content: " ";
103 display: none;
104 margin: 0 auto;
105 position: relative;
106 transition: all 280ms ease-in-out;
107 width: 0;
108 }
109
110 /* .ays-notice-banner .navigation-bar li a:hover:after{
111 -webkit-backface-visibility: hidden;
112 backface-visibility: hidden;
113 border-color: #fff;
114 transition: width 350ms ease-in-out;
115 width: 100%;
116 } */
117
118 .ays-notice-banner .navigation-bar li a:hover{
119 outline: unset;
120 box-shadow: unset;
121 color: #3E477D;
122 }
123
124 .ays-notice-banner .modile-ddmenu-lg {
125 display: none;
126 }
127
128 .ays-notice-banner .modile-ddmenu-sm,
129 .ays-notice-banner .modile-ddmenu-md {
130 display: none;
131 position: relative;
132 width: 80px;
133 }
134
135 .ays-notice-banner #menu li a.toggle_ddmenu {
136 font-size:25px;
137 /* color:#fff; */
138 color: #5561A3;
139 width: 100%;
140 }
141
142 .ays-notice-banner #menu li a.toggle_ddmenu i.ays_fa{
143 transition: .1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
144 }
145
146 .ays-notice-banner li ul.ddmenu {
147 display: none;
148 position: absolute;
149 right: -55px;
150 top: 50px;
151 z-index: 10000;
152 flex-direction: column;
153 width: fit-content;
154 min-width: 200px;
155 text-align: left;
156 /* background-color: #0093E9; */
157 /* background-image: linear-gradient(-160deg, #80D0C7 0%, #0093E9 100%); */
158 background-color: #FFFFFF;
159 background-image: unset;
160 box-shadow: 0px 4px 4px rgb(188 198 216 / 11%);
161
162 }
163
164 .ays-notice-banner li ul.ddmenu[data-expanded="true"] {
165 display: flex;
166 animation: slideInRight .2s;
167 }
168
169 .ays-notice-banner li ul.ddmenu li {
170 padding-left: 20px;
171 }
172
173 .ays-notice-banner .logo-container {
174 width:75px;
175 height:75px;
176 }
177
178 .ays-notice-banner .logo-container img {
179 width:100%;
180 height:100%;
181 object-fit:contain;
182 }
183
184 .ays-navigation-container-logo-upgrade-box {
185 display: flex;
186 width: 270px;
187 gap: 5px;
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 .ays-navigation-container-upgrade-button-text {
224 display: none;
225 }
226 .ays-notice-banner #navigation-container a.ays-btn-upgrade {
227 padding: 5px 10px;
228 }
229 }
230
231 @media screen and (min-width: 1080px){
232 .ays-notice-banner .modile-ddmenu-lg {
233 display: block;
234 }
235 .ays-notice-banner .modile-ddmenu-sm {
236 display: none;
237 }
238 .ays-notice-banner .modile-ddmenu-md {
239 display: none;
240 }
241 .ays-notice-banner .modile-ddmenu-xs {
242 display: none;
243 }
244 }
245
246 @media screen and (max-width: 1080px){
247 .ays-notice-banner .modile-ddmenu-md {
248 display: block;
249 }
250 }
251
252 @media screen and (min-width: 531px) and (max-width: 768px){
253 .ays-notice-banner .modile-ddmenu-sm {
254 display: none;
255 }
256 .ays-notice-banner .modile-ddmenu-md {
257 display: block;
258 }
259
260 div.ays-notice-banner{
261 width: 100%;
262 }
263
264 }
265 @media screen and (max-width: 530px){
266 .ays-notice-banner .modile-ddmenu-sm {
267 display: block;
268 }
269 .ays-notice-banner .modile-ddmenu-md {
270 display: none;
271 }
272 .ays-notice-banner .modile-ddmenu-xs {
273 display: none;
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 ~~ */