| 1 |
.wpda-navi-container { |
| 2 |
display: grid; |
| 3 |
grid-gap: 5px; |
| 4 |
margin: 20px 20px 0 0; |
| 5 |
padding: 0; |
| 6 |
border-radius: 4px; |
| 7 |
background-color: #fff; |
| 8 |
} |
| 9 |
|
| 10 |
.wpda-navi-container *:focus { |
| 11 |
outline: none !important; |
| 12 |
border-color: unset !important; |
| 13 |
-webkit-box-shadow: none !important; |
| 14 |
box-shadow: none !important; |
| 15 |
} |
| 16 |
|
| 17 |
.wpda-navi-container a { |
| 18 |
text-decoration: none; |
| 19 |
color: #4399fa; |
| 20 |
} |
| 21 |
|
| 22 |
.wpda-navi-container a:hover { |
| 23 |
color: #ff9f1c; |
| 24 |
} |
| 25 |
|
| 26 |
.wpda-navi-container > div > h2 { |
| 27 |
margin: 0; |
| 28 |
text-transform: uppercase; |
| 29 |
font-weight: bold; |
| 30 |
font-size: 140%; |
| 31 |
} |
| 32 |
|
| 33 |
.wpda-navi-container-header { |
| 34 |
margin: 0; |
| 35 |
padding: 50px; |
| 36 |
border-top-left-radius: 4px; |
| 37 |
border-top-right-radius: 4px; |
| 38 |
-moz-border-radius-topleft: 4px; |
| 39 |
-moz-border-radius-topright: 4px; |
| 40 |
background-blend-mode: overlay; |
| 41 |
background-image: url(../images/coding-background-texture.jpg); |
| 42 |
background-color: #4399fa; |
| 43 |
background-repeat: no-repeat; |
| 44 |
border-bottom: 4px solid #ff9f1c; |
| 45 |
color: #fff; |
| 46 |
position: relative; |
| 47 |
} |
| 48 |
|
| 49 |
.wpda-navi-container-header-title { |
| 50 |
display: grid; |
| 51 |
grid-template-columns: 1fr 296px; |
| 52 |
} |
| 53 |
@media screen and (max-width: 800px) { |
| 54 |
.wpda-navi-container-header-title { |
| 55 |
display: grid; |
| 56 |
grid-template-columns: 1fr; |
| 57 |
} |
| 58 |
|
| 59 |
.wpda-navi-container-header-image { |
| 60 |
display: none; |
| 61 |
} |
| 62 |
} |
| 63 |
|
| 64 |
.wpda-navi-container-header h1, |
| 65 |
.wpda-navi-container-header h2 { |
| 66 |
color: #fff; |
| 67 |
line-height: 1.2; |
| 68 |
} |
| 69 |
|
| 70 |
.wpda-navi-container-header h1 { |
| 71 |
margin-bottom: 30px; |
| 72 |
} |
| 73 |
|
| 74 |
.wpda-navi-container-header h2 { |
| 75 |
font-size: 90%; |
| 76 |
} |
| 77 |
|
| 78 |
.wpda-navi-container-header-image { |
| 79 |
position: absolute; |
| 80 |
top: 20px; |
| 81 |
right: 30px; |
| 82 |
} |
| 83 |
|
| 84 |
.wpda-navi-container-header-image img { |
| 85 |
height: 225px; |
| 86 |
width: 275px; |
| 87 |
} |
| 88 |
|
| 89 |
.wpda-navi-container-content { |
| 90 |
margin: 0; |
| 91 |
padding: 30px; |
| 92 |
} |
| 93 |
|
| 94 |
.wpda-navi-container-content:last-of-type { |
| 95 |
padding-top: 0; |
| 96 |
} |
| 97 |
|
| 98 |
.wpda-navi-container-content-item { |
| 99 |
border: 1px solid #4399fa; |
| 100 |
border-radius: 4px; |
| 101 |
padding: 30px; |
| 102 |
display: grid; |
| 103 |
grid-template-rows: auto auto auto 1fr; |
| 104 |
align-items: baseline; |
| 105 |
gap: 20px; |
| 106 |
} |
| 107 |
|
| 108 |
.wpda-navi-container-content .wpda-hot-topics { |
| 109 |
position: relative; |
| 110 |
} |
| 111 |
|
| 112 |
.wpda-navi-container-content .wpda-hot-topics h2 { |
| 113 |
color: #fff; |
| 114 |
text-transform: uppercase; |
| 115 |
margin: 0 0 10px 0; |
| 116 |
font-weight: bold; |
| 117 |
font-size: 140%; |
| 118 |
} |
| 119 |
|
| 120 |
.wpda-navi-container-content .wpda-hot-topics button { |
| 121 |
color: #ff9f1c; |
| 122 |
background-color: #fff; |
| 123 |
border: 4px solid #fff; |
| 124 |
border-radius: 4px; |
| 125 |
font-weight: bold; |
| 126 |
font-size: 120%; |
| 127 |
padding: 10px; |
| 128 |
cursor: pointer; |
| 129 |
} |
| 130 |
|
| 131 |
.wpda-navi-container-content .wpda-hot-topics button:hover { |
| 132 |
border: 4px solid #ff9f1c; |
| 133 |
z-index: 3; |
| 134 |
} |
| 135 |
|
| 136 |
.wpda-navi-container-content .wpda-hot-topics button .wpda-hot-title { |
| 137 |
display: block; |
| 138 |
} |
| 139 |
|
| 140 |
.wpda-navi-container-content .wpda-hot-topics button .wpda-hot-topic { |
| 141 |
font-size: 80%; |
| 142 |
font-weight: normal; |
| 143 |
color: #3c434a; |
| 144 |
} |
| 145 |
|
| 146 |
.wpda-navi-container-content-item.wpda-hot-topics { |
| 147 |
border: none; |
| 148 |
background-blend-mode: overlay; |
| 149 |
background-image: url(../images/coding-background-texture.jpg); |
| 150 |
background-color: #4399fa !important; |
| 151 |
background-repeat: no-repeat; |
| 152 |
grid-template-rows: unset; |
| 153 |
} |
| 154 |
|
| 155 |
.wpda-navi-container-content-item-title { |
| 156 |
display: grid; |
| 157 |
grid-template-columns: auto auto 1fr; |
| 158 |
justify-content: start; |
| 159 |
align-items: center; |
| 160 |
gap: 5px; |
| 161 |
} |
| 162 |
|
| 163 |
.wpda-navi-container-content-item-title svg { |
| 164 |
fill: #3c434a; |
| 165 |
} |
| 166 |
|
| 167 |
.wpda-navi-container-content-item-title h3 { |
| 168 |
margin: 0; |
| 169 |
} |
| 170 |
|
| 171 |
.wpda-navi-container-content-item-title-help { |
| 172 |
text-align: right; |
| 173 |
} |
| 174 |
|
| 175 |
.wpda-navi-container-content-item-content ul { |
| 176 |
margin: 0; |
| 177 |
list-style: none; |
| 178 |
} |
| 179 |
|
| 180 |
.wpda-navi-container-content-item-content ul li { |
| 181 |
margin-bottom: 2px; |
| 182 |
} |
| 183 |
|
| 184 |
.wpda-navi-container-content-item-content ul li:last-of-type { |
| 185 |
margin-bottom: 0; |
| 186 |
} |
| 187 |
|
| 188 |
.wpda-navi-container-content-item-content a { |
| 189 |
display: block; |
| 190 |
border-radius: 4px; |
| 191 |
padding: 8px; |
| 192 |
background-color: #4399fa; |
| 193 |
color: #fff; |
| 194 |
font-weight: bold; |
| 195 |
} |
| 196 |
|
| 197 |
.wpda-navi-container-content-item-content a:hover { |
| 198 |
background-color: #ff9f1c; |
| 199 |
color: #fff; |
| 200 |
} |
| 201 |
|
| 202 |
.wpda-navi-container-content-item-content-grid { |
| 203 |
display: grid; |
| 204 |
grid-template-columns: 1fr 1fr; |
| 205 |
gap: 2px; |
| 206 |
} |
| 207 |
|
| 208 |
.wpda-navi-container-content-item-content ul.wpda-navi-container-content-item-content-grid li { |
| 209 |
margin-bottom: 0; |
| 210 |
} |
| 211 |
|
| 212 |
.wpda-navi-container-content-item-facts ul { |
| 213 |
margin: 0; |
| 214 |
list-style: disc; |
| 215 |
padding-left: 20px; |
| 216 |
} |
| 217 |
|
| 218 |
.wpda-navi-container-content-item-facts ul li { |
| 219 |
margin-bottom: 0; |
| 220 |
} |
| 221 |
|
| 222 |
.wpda-featured { |
| 223 |
border-color: #ff9f1c; |
| 224 |
border-width: 4px; |
| 225 |
} |
| 226 |
|
| 227 |
.wpda-new { |
| 228 |
color: #ff9f1c; |
| 229 |
font-weight: bold; |
| 230 |
} |
| 231 |
|
| 232 |
.wpda-new-plain { |
| 233 |
color: #ff9f1c; |
| 234 |
font-weight: normal; |
| 235 |
} |
| 236 |
|
| 237 |
.wpda-icon { |
| 238 |
font-size: 20px; |
| 239 |
height: 20px; |
| 240 |
} |
| 241 |
|
| 242 |
.wpda-icon-help { |
| 243 |
font-size: 24px; |
| 244 |
height: 24px; |
| 245 |
} |
| 246 |
|
| 247 |
.wpda-navi-container-content-items { |
| 248 |
display: grid; |
| 249 |
grid-template-columns: 1fr 1fr; |
| 250 |
gap: 30px; |
| 251 |
} |
| 252 |
.wpda-navi-container-content-item.wpda-hot-topics .wpda-navi-container-content-item-facts { |
| 253 |
display: grid; |
| 254 |
grid-template-columns: 1fr 1fr 1fr; |
| 255 |
gap: 30px; |
| 256 |
} |
| 257 |
|
| 258 |
@media screen and (max-width: 1700px) { |
| 259 |
.wpda-navi-container-content-items, |
| 260 |
.wpda-navi-container-content-item.wpda-hot-topics .wpda-navi-container-content-item-facts { |
| 261 |
/*font-size: 90%;*/ |
| 262 |
} |
| 263 |
} |
| 264 |
|
| 265 |
@media screen and (max-width: 1540px) { |
| 266 |
/*.wpda-navi-container-content-items,*/ |
| 267 |
.wpda-navi-container-content-item.wpda-hot-topics .wpda-navi-container-content-item-facts { |
| 268 |
grid-template-columns: 1fr 1fr; |
| 269 |
} |
| 270 |
|
| 271 |
.wpda-navi-container-content .wpda-hot-topics button { |
| 272 |
padding: 10px 10px; |
| 273 |
} |
| 274 |
} |
| 275 |
|
| 276 |
@media screen and (max-width: 1240px) { |
| 277 |
.wpda-navi-container-content-items { |
| 278 |
font-size: 90%; |
| 279 |
} |
| 280 |
|
| 281 |
.wpda-navi-container-content-items .wpda-navi-container-content-item { |
| 282 |
grid-template-rows: auto auto auto; |
| 283 |
padding: 20px; |
| 284 |
} |
| 285 |
|
| 286 |
/*.wpda-navi-container-content-items .wpda-navi-container-content-item .wpda-navi-container-content-item-facts {*/ |
| 287 |
/* display: none;*/ |
| 288 |
/*}*/ |
| 289 |
|
| 290 |
.wpda-navi-container-content-items .wpda-navi-container-content-item .wpda-navi-container-content-item-facts.whats-new { |
| 291 |
max-height: 70px !important; |
| 292 |
} |
| 293 |
|
| 294 |
.wpda-navi-container-content-items .wpda-navi-container-content-item .switch-grid { |
| 295 |
grid-template-columns: 1fr; |
| 296 |
} |
| 297 |
|
| 298 |
.wpda-navi-container-content .wpda-hot-topics button .wpda-hot-title { |
| 299 |
display: none; |
| 300 |
} |
| 301 |
|
| 302 |
.wpda-navi-container-content .wpda-hot-topics button .wpda-hot-topic { |
| 303 |
color: unset; |
| 304 |
font-weight: bold; |
| 305 |
} |
| 306 |
|
| 307 |
.wpda-navi-container-content .wpda-hot-topics button { |
| 308 |
padding: 5px 5px; |
| 309 |
font-size: 100%; |
| 310 |
} |
| 311 |
} |
| 312 |
|
| 313 |
@media screen and (max-width: 800px) { |
| 314 |
.wpda-navi-container-content-items, |
| 315 |
.wpda-navi-container-content-item.wpda-hot-topics .wpda-navi-container-content-item-facts { |
| 316 |
grid-template-columns: 1fr; |
| 317 |
} |
| 318 |
} |
| 319 |
|
| 320 |
#wpda-legacy-tool-settings { |
| 321 |
position: relative; |
| 322 |
} |
| 323 |
|
| 324 |
#wpda-legacy-tool-settings a { |
| 325 |
display: flex; |
| 326 |
align-items: center; |
| 327 |
font-weight: bold; |
| 328 |
} |
| 329 |
|
| 330 |
#wpda-legacy-tool-settings-panel { |
| 331 |
display: none; |
| 332 |
position: absolute; |
| 333 |
top: 40px; |
| 334 |
right: 0; |
| 335 |
border: 4px solid #ff9f1c; |
| 336 |
border-radius: 4px; |
| 337 |
background-color: white; |
| 338 |
padding: 30px; |
| 339 |
} |
| 340 |
|
| 341 |
#wpda-legacy-tool-settings-panel table th, |
| 342 |
#wpda-legacy-tool-settings-panel table td { |
| 343 |
white-space: nowrap; |
| 344 |
padding-right: 20px; |
| 345 |
} |
| 346 |
|
| 347 |
#wpda-legacy-tool-settings-panel table th:last-of-type, |
| 348 |
#wpda-legacy-tool-settings-panel table td:last-of-type { |
| 349 |
padding-right: 0; |
| 350 |
} |
| 351 |
|
| 352 |
#wpda-legacy-tool-settings-panel table th.items, |
| 353 |
#wpda-legacy-tool-settings-panel table td.items { |
| 354 |
text-align: right; |
| 355 |
} |
| 356 |
|
| 357 |
#wpda-legacy-tool-settings-panel table th.status, |
| 358 |
#wpda-legacy-tool-settings-panel table td.status { |
| 359 |
text-align: center; |
| 360 |
} |
| 361 |
|
| 362 |
#wpda-legacy-tool-settings-submit { |
| 363 |
margin-top: 15px; |
| 364 |
text-align: right; |
| 365 |
} |
| 366 |
|
| 367 |
#wpda-legacy-tool-settings-submit button { |
| 368 |
padding: 5px 10px; |
| 369 |
font-weight: bold; |
| 370 |
border: 0; |
| 371 |
border-radius: 4px; |
| 372 |
cursor: pointer; |
| 373 |
} |
| 374 |
|
| 375 |
#wpda-legacy-tool-settings-submit button[type=submit] { |
| 376 |
background-color: #4399fa; |
| 377 |
color: #fff; |
| 378 |
} |
| 379 |
|
| 380 |
#wpda-legacy-tool-settings-submit button[type=button] { |
| 381 |
color: #4399fa; |
| 382 |
background-color: #fff; |
| 383 |
border: 1px solid #4399fa; |
| 384 |
} |
| 385 |
|
| 386 |
#wpda-legacy-tool-settings-panel table .tool_status_icon { |
| 387 |
color: #4399fa; |
| 388 |
cursor: pointer; |
| 389 |
} |
| 390 |
|
| 391 |
a.roadmap { |
| 392 |
text-decoration: none; |
| 393 |
font-weight: bold; |
| 394 |
color: #ff9f1c; |
| 395 |
} |
| 396 |
a.roadmap:hover { |
| 397 |
color: #4399fa; |
| 398 |
} |
| 399 |
|
| 400 |
a.whatsnew { |
| 401 |
text-decoration: none; |
| 402 |
font-weight: bold; |
| 403 |
color: #4399fa; |
| 404 |
} |
| 405 |
a.whatsnew:hover { |
| 406 |
color: #ff9f1c; |
| 407 |
} |
| 408 |
|