PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.0.1
WP Coder – Insert & Manage Code Snippets v3.0.1
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 / _header.scss

_header.scss in WP Coder – Insert & Manage Code Snippets 3.0.1, at assets/scss/_header.scss

80 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 20px;
10 margin-left: -20px;
11 background: #ffffff;
12 display: flex;
13 align-items: center;
14 gap: 1rem;
15 flex-wrap: wrap;
16 }
17
18
19 .wowp-logo {
20 display: flex;
21 align-items: center;
22 }
23
24 .wowp-logo img {
25 width: 40px;
26 }
27
28 .wowp-header h1 {
29 position: relative;
30 margin: 0 35px 0 0 ;
31 }
32
33 .wowp-version {
34 position: absolute;
35 transform: translateY(-50%) translateX(50%);
36 font-size: 12px;
37 font-weight: normal;
38 }
39
40 .wowp-links {
41 position: absolute;
42 top: 0;
43 right: 20px;
44 display: flex;
45 border-radius: 0 0 4px 4px;
46 border: 2px solid;
47 border-top: none;
48 background-color: #DFE2FC;
49 border-image: linear-gradient(to right, #14102C, #E86E2C);
50 border-image-slice: 1;
51 @media screen and (max-width: 850px) {
52 display: none;
53 }
54 img{
55 width: 15px;
56 height: 15px;
57 }
58 }
59
60 .wowp-links a {
61 text-decoration: none;
62 color: #14102C;
63 display: flex;
64 flex-direction: column;
65 font-size: 12px;
66 align-items: center;
67 padding: 5px;
68 transition: all 0.15s linear;
69 }
70
71 .wowp-links a:hover {
72 background-color: #F6C8AF;
73 }
74
75 .wowp-links .dashicons {
76 width: 15px;
77 height: 15px;
78 font-size: 15px;
79 color: #596FF9;
80 }