_header.scss in WP Coder – Insert & Manage Code Snippets 3.5, at assets/scss/_header.scss
| 1 | .wowp-header-border { |
| 2 | height: 5px; |
| 3 | background: linear-gradient(to right, var(--wowp-blue), var(--wowp-yellow)); |
| 4 | margin-left: -20px; |
| 5 | } |
| 6 | |
| 7 | .wowp-header { |
| 8 | position: relative; |
| 9 | padding: 32px 36px; |
| 10 | margin-left: -20px; |
| 11 | |
| 12 | display: flex; |
| 13 | align-items: center; |
| 14 | gap: 1rem; |
| 15 | flex-wrap: wrap; |
| 16 | } |
| 17 | |
| 18 | .wowp-header-title { |
| 19 | display: flex; |
| 20 | align-items: center; |
| 21 | background: #ffffff; |
| 22 | padding: 22px 36px; |
| 23 | margin-left: -20px; |
| 24 | border-top: 1px solid #dcdcdc; |
| 25 | border-bottom: 1px solid #dcdcdc; |
| 26 | h2 { |
| 27 | font-size: 22px; |
| 28 | font-weight: 600; |
| 29 | margin: 0; |
| 30 | } |
| 31 | .button { |
| 32 | margin-left: 20px; |
| 33 | } |
| 34 | .wowp-notice-license { |
| 35 | margin-left: 20px; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | |
| 40 | .wowp-logo { |
| 41 | display: flex; |
| 42 | align-items: center; |
| 43 | } |
| 44 | |
| 45 | .wowp-logo img { |
| 46 | width: 40px; |
| 47 | } |
| 48 | |
| 49 | .wowp-header h1 { |
| 50 | position: relative; |
| 51 | margin: 0 35px 0 0 ; |
| 52 | } |
| 53 | |
| 54 | .wowp-version { |
| 55 | position: absolute; |
| 56 | transform: translateY(-50%) translateX(50%); |
| 57 | font-size: 12px; |
| 58 | font-weight: normal; |
| 59 | } |
| 60 | |
| 61 | .wowp-links { |
| 62 | position: absolute; |
| 63 | bottom: 0; |
| 64 | left: 36px; |
| 65 | display: flex; |
| 66 | @media screen and (max-width: 850px) { |
| 67 | display: none; |
| 68 | } |
| 69 | img{ |
| 70 | width: 15px; |
| 71 | height: 15px; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | .wowp-links a { |
| 76 | text-decoration: none; |
| 77 | display: flex; |
| 78 | flex-direction: column; |
| 79 | font-size: 12px; |
| 80 | align-items: center; |
| 81 | padding: 5px; |
| 82 | transition: all 0.15s linear; |
| 83 | } |
| 84 | |
| 85 | .wowp-links a:hover { |
| 86 | color: #14102C; |
| 87 | } |
| 88 | |
| 89 | .wowp-links .codericon, |
| 90 | .wowp-links .dashicons { |
| 91 | width: 15px; |
| 92 | height: 15px; |
| 93 | font-size: 15px; |
| 94 | color: #596FF9; |
| 95 | display: none; |
| 96 | } |