PluginProbe
codoc / 0.9.58
codoc v0.9.58
0.9.8.8 0.9.8.9 0.9.9 0.9.9.1 trunk 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.8.1 0.8.2 0.8.3 0.8.4 0.8.6 0.8.7 0.8.8 0.8.9 0.9 0.9.1 0.9.10 0.9.11 All 114 releases
codoc / dist / blocks.editor.build.css

blocks.editor.build.css in codoc 0.9.58, at dist/blocks.editor.build.css

83 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * #.# Common SCSS
3 *
4 * Can include things like variables and mixins
5 * that are used across the project.
6 */
7 /**
8 * #.# Editor Styles
9 *
10 * CSS for just Backend enqueued after style.scss
11 * which makes it higher in priority.
12 */
13 .wp-block-cgb-block-wordpress {
14 background: #bada55;
15 border: 0.2rem solid rgb(41, 41, 41);
16 color: rgb(41, 41, 41);
17 margin: 0 auto;
18 max-width: 740px;
19 padding: 2rem;
20 }
21
22 .wp-block-codoc-border {
23 background: #bada55;
24 border: 0.2rem solid rgb(41, 41, 41);
25 color: rgb(41, 41, 41);
26 text-align: center;
27 padding: 2rem;
28 }
29
30 .components-range-control__number {
31 width: 70px;
32 }
33
34 .codoc-subscription-title {
35 display: -ms-flexbox;
36 display: flex;
37 -ms-flex-pack: justify;
38 justify-content: space-between;
39 }
40
41 .codoc-subscription-add {
42 position: relative;
43 display: inline-block;
44 padding: 2px 10px 2px 23px;
45 margin-left: 10px;
46 background: #0073aa;
47 color: #fff;
48 font-size: 11px;
49 text-decoration: none;
50 border-radius: 3px;
51 }
52
53 .codoc-subscription-add:hover {
54 background: #0070a7;
55 color: #efefef;
56 }
57
58 .codoc-subscription-add:before {
59 position: absolute;
60 top: 50%;
61 left: 7px;
62 display: block;
63 content: "";
64 width: 10px;
65 height: 1px;
66 margin-top: -1px;
67 background: #fff;
68 }
69
70 .codoc-subscription-add:after {
71 position: absolute;
72 top: 50%;
73 left: 7px;
74 display: block;
75 content: "";
76 width: 10px;
77 height: 1px;
78 margin-top: -1px;
79 background: #fff;
80 -webkit-transform: rotate(90deg);
81 -ms-transform: rotate(90deg);
82 transform: rotate(90deg);
83 }