admin.scss in WP Coder – Insert & Manage Code Snippets 3.0.3, at assets/scss/admin.scss
| 1 | :root { |
| 2 | --wowp-blue: #005BBF; |
| 3 | --wowp-yellow: #FFD500; |
| 4 | --wowp-border: #cccccc; |
| 5 | --wowp-dark: #14102C; |
| 6 | --wowp-orange: #E86E2C; |
| 7 | --wowp-bg: #EEF3EB; |
| 8 | --wowp-success: #00BF04; |
| 9 | --wowp-danger: #BF0400; |
| 10 | } |
| 11 | |
| 12 | .wowp-box { |
| 13 | padding: 1.5rem 1.25rem; |
| 14 | margin-top: 50px; |
| 15 | position: relative; |
| 16 | box-sizing: border-box; |
| 17 | background: #ffffff; |
| 18 | background-clip: padding-box; |
| 19 | border: solid 2px transparent; |
| 20 | border-radius: 4px; |
| 21 | &::before { |
| 22 | content: ''; |
| 23 | position: absolute; |
| 24 | top: 0; right: 0; bottom: 0; left: 0; |
| 25 | z-index: -1; |
| 26 | margin: -2px; |
| 27 | border-radius: inherit; |
| 28 | background: linear-gradient(to bottom, var(--wowp-blue), var(--wowp-yellow)); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | @import "header"; |
| 33 | @import "menu"; |
| 34 | @import "list"; |
| 35 | @import "form"; |
| 36 | @import "notice"; |
| 37 | @import "tools"; |
| 38 | @import "settings"; |
| 39 | @import "sidebar"; |
| 40 | @import "buttons"; |
| 41 | @import "details"; |
| 42 | @import "helper"; |
| 43 | @import "features"; |
| 44 | @import "boxes"; |