PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.5
WP Coder – Insert & Manage Code Snippets v3.5
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / assets / scss / admin.scss

admin.scss in WP Coder – Insert & Manage Code Snippets 3.5, at assets/scss/admin.scss

49 lines 1000 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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";
45 @import "changelog";
46 @import "display";
47 @import "codeMirror";
48 @import "notification";
49