PluginProbe
Comments Extra Fields For Post,Pages and CPT / 4.6
Comments Extra Fields For Post,Pages and CPT v4.6
trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 2.2 2.3 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 5.0 5.1 5.2
wp-comment-fields / css / divider.css

divider.css in Comments Extra Fields For Post,Pages and CPT 4.6, at css/divider.css

110 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wpcomment-divider-with-txt {
2 display: flex;
3 font-size: 1rem !important;
4 }
5
6 .wpcomment-divider-with-txt:before,
7 .wpcomment-divider-with-txt:after {
8 content: "";
9 flex: 1;
10 }
11
12 .wpcomment-divider-line {
13 align-items: center;
14 margin: 1em -1em;
15 width: auto !important;
16 }
17
18 .wpcomment-divider-line:before,
19 .wpcomment-divider-line:after {
20 margin: 0 1em;
21 }
22
23 .wpcomment-divider-gradient {
24 align-items: stretch;
25 margin: 1em 0;
26 height: 2em;
27 line-height: 2em;
28 color: white !important;
29 background: black;
30 }
31
32 .wpcomment-divider-gradient:before {
33 background: linear-gradient(to right, white, black);
34 }
35
36 .wpcomment-divider-gradient:after {
37 background: linear-gradient(to left, white, black);
38 }
39
40 .wpcomment-divider-donotcross {
41 overflow: hidden;
42 align-items: center;
43 background: #ffd500;
44 /*padding-top: 11px;*/
45 color: black !important;
46 height: 2em;
47 line-height: 2em !important;
48 }
49
50 .wpcomment-divider-donotcross:before,
51 .wpcomment-divider-donotcross:after {
52 background: white;
53 padding: 15px 0;
54 height: 0;
55 transform: rotate(45deg);
56 }
57
58 .wpcomment-divider-easy-shadow {
59 display: table;
60 font-size: 24px;
61 text-align: center;
62 margin: 2px auto;
63 }
64
65 .wpcomment-divider-easy-shadow span {
66 display: table-cell;
67 position: relative;
68 }
69
70 .wpcomment-divider-easy-shadow span:first-child,
71 .wpcomment-divider-easy-shadow span:last-child {
72 width: 50%;
73 top: 13px;
74 -moz-background-size: 100% 2px;
75 background-size: 100% 2px;
76 background-position: 0 0, 0 100%;
77 background-repeat: no-repeat;
78 }
79
80 .wpcomment-divider-easy-shadow span:nth-child(2) {
81 color: #000;
82 padding: 0px 5px;
83 width: auto;
84 white-space: nowrap;
85 line-height: 30px;
86 }
87
88 .wpcomment-divider-fancy-heading {
89 font-size: 1.5em !important;
90 letter-spacing: 0.08em;
91 font-weight: 300 !important;
92 color: #F60 !important;
93 text-shadow: 0 1px 1px #FFFFFF;
94 text-transform: uppercase;
95 }
96
97 .wpcomment-divider-fancy-line {
98 border-bottom: 1px solid #e8e6e6;
99 background-color: #DADADA;
100 /*height: 1px;*/
101 margin-bottom: 10px;
102 }
103
104 .wpcomment-divider-fancy-line span {
105 display: block;
106 width: 50px;
107 height: 1px;
108 background-color: #F60;
109 }
110