content.css
3 months ago
docs.css
3 months ago
header.css
3 months ago
our-dashboard.css
3 months ago
post-type-help-doc-imports.css
3 months ago
post-type-help-docs.css
3 months ago
post-types.css
3 months ago
pt-tax.css
3 months ago
taxonomies.css
3 months ago
header.css
129 lines
| 1 | #helpdocs-header { |
| 2 | margin: 0 0 0 -20px !important; |
| 3 | display: flex; |
| 4 | gap: 1rem; |
| 5 | align-items: center; |
| 6 | background: var(--helpdocs-color-header-bg) !important; |
| 7 | padding: 20px 30px; |
| 8 | } |
| 9 | |
| 10 | #helpdocs-header .logo { |
| 11 | height: 32px !important; |
| 12 | width: auto !important; |
| 13 | } |
| 14 | |
| 15 | #helpdocs-header h1 { |
| 16 | color: var(--helpdocs-color-header-font) !important; |
| 17 | letter-spacing: 0 !important; |
| 18 | line-height: 1.2 !important; |
| 19 | font-size: 1.5rem; |
| 20 | margin: 0; |
| 21 | padding: 0; |
| 22 | } |
| 23 | |
| 24 | #helpdocs-subheader { |
| 25 | margin: 0 0 0 -20px !important; |
| 26 | display: flex; |
| 27 | gap: 2rem; |
| 28 | justify-content: space-between; |
| 29 | align-items: center; |
| 30 | background: white !important; |
| 31 | color: #333 !important; |
| 32 | padding: 20px 30px; |
| 33 | box-shadow: 0px 1px 2px rgba(16, 24, 40, .1); |
| 34 | } |
| 35 | |
| 36 | #helpdocs-subheader .subheader-left { |
| 37 | display: flex; |
| 38 | gap: 2rem; |
| 39 | align-items: center; |
| 40 | } |
| 41 | |
| 42 | #helpdocs-header .tabs-wrapper { |
| 43 | display: flex; |
| 44 | gap: 5px; |
| 45 | align-items: center; |
| 46 | } |
| 47 | |
| 48 | #helpdocs-header a.helpdocs-tab { |
| 49 | background: transparent; |
| 50 | color: var(--helpdocs-color-header-tab-link); |
| 51 | border: none !important; |
| 52 | border-radius: 6px; |
| 53 | text-decoration: none; |
| 54 | padding: 10px 15px !important; |
| 55 | cursor: pointer; |
| 56 | font-size: 12px !important; |
| 57 | line-height: 1 !important; |
| 58 | } |
| 59 | |
| 60 | #helpdocs-header a.helpdocs-tab-active, |
| 61 | #helpdocs-header a.helpdocs-tab:hover { |
| 62 | background: var(--helpdocs-color-header-tab) !important; |
| 63 | color: var(--helpdocs-color-header-font) !important; |
| 64 | } |
| 65 | |
| 66 | #helpdocs-header a.helpdocs-tab-active { |
| 67 | font-weight: 500; |
| 68 | } |
| 69 | |
| 70 | #helpdocs-subheader h2.tab-title { |
| 71 | font-size: 21px; |
| 72 | font-weight: 400; |
| 73 | margin: 0 !important; |
| 74 | padding: 0 !important; |
| 75 | border-top: 0 !important; |
| 76 | } |
| 77 | |
| 78 | #helpdocs-subheader a.tab-button { |
| 79 | display: inline-block; |
| 80 | padding: 8px 12px 6px !important; |
| 81 | } |
| 82 | |
| 83 | #helpdocs-subheader .helpdocs-search-input { |
| 84 | margin-bottom: 0 !important; |
| 85 | } |
| 86 | |
| 87 | #helpdocs-subheader a.tab-button .dashicons { |
| 88 | width: 16px; |
| 89 | height: 16px; |
| 90 | font-size: 14px; |
| 91 | vertical-align: middle; |
| 92 | } |
| 93 | |
| 94 | .helpdocs-tax-search, |
| 95 | .helpdocs-posttype-search { |
| 96 | display: flex; |
| 97 | gap: 10px; |
| 98 | } |
| 99 | |
| 100 | .helpdocs-admin-screen #screen-meta, |
| 101 | .helpdocs-admin-screen #screen-meta-links { |
| 102 | display: none; |
| 103 | } |
| 104 | |
| 105 | #helpdocs-subheader .subheader-right { |
| 106 | display: flex; |
| 107 | gap: 1rem; |
| 108 | align-items: center; |
| 109 | } |
| 110 | |
| 111 | /* Save Reminder */ |
| 112 | |
| 113 | #helpdocs-save-reminder { |
| 114 | display: none; |
| 115 | background: linear-gradient(90deg,#dc3545 0%,#b02a37 100%); |
| 116 | color: #ffffff; |
| 117 | padding: 5px 20px; |
| 118 | border-radius: 8px; |
| 119 | font-size: 15px; |
| 120 | font-weight: 500; |
| 121 | box-shadow: 0 4px 14px rgba(220,53,69,0.25); |
| 122 | animation: helpdocsPulse 2s ease-in-out infinite; |
| 123 | } |
| 124 | |
| 125 | @keyframes helpdocsPulse{ |
| 126 | 0%{box-shadow:0 4px 14px rgba(220,53,69,0.25);} |
| 127 | 50%{box-shadow:0 6px 24px rgba(220,53,69,0.6);} |
| 128 | 100%{box-shadow:0 4px 14px rgba(220,53,69,0.25);} |
| 129 | } |