PluginProbe
Webling / 3.0
Webling v3.0
trunk 2.0 3.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.3.0 3.4.0 3.4.1 3.5.0 3.6.0 3.7.0 3.7.1 3.7.2 3.7.3 3.8.0 3.9.0 3.9.1 3.9.2
webling / css / frontend.css

frontend.css in Webling 3.0, at css/frontend.css

87 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 /* Memberlists */
3
4 .webling_memberlist img {
5 max-height: 30px;
6 }
7
8
9 /* Forms */
10
11
12 .webling-form__group {
13 margin: 1.5em 0;
14 }
15
16 .webling-form__required {
17 color: red;
18 }
19
20 .webling-form__input,
21 .webling-form__select,
22 .webling-form__multiselect,
23 .webling-form__textarea {
24 width: 100%;
25 display: block;
26 }
27
28
29 .webling-form__input,
30 .webling-form__textarea {
31 padding: 0.5em;
32 }
33
34 .webling-form__group--hidden .webling-form__label {
35 display: none;
36 }
37
38 .webling-form__group--left .webling-form__label {
39 display: block;
40 width: 33%;
41 float: left;
42 padding: 0.5em 0;
43 }
44
45 .webling-form__group--left .webling-form__field {
46 display: block;
47 width: 67%;
48 float: left;
49 }
50
51 .webling-form__group--left:after {
52 content: '';
53 display: block;
54 clear: both;
55 }
56
57 ul.webling-form__multiselect {
58 list-style: none;
59 margin: 0.5em 0;
60 }
61
62 .webling-form__select {
63 margin: 0.5em 0;
64 }
65
66 input.webling-form__checkbox {
67 vertical-align: middle;
68 }
69
70 /* hide h0nèyp0t */
71 #webling-form-field_0 {
72 display: none !important;
73 }
74
75 /* Responsive Breakpoint for phones < 768px */
76 @media only screen and (max-width: 47.9999em) {
77 .webling-form__group--left .webling-form__label,
78 .webling-form__group--left .webling-form__field {
79 display: block;
80 width: 100%;
81 float: none;
82 }
83
84 .webling-form__group {
85 margin: 1em 0;
86 }
87 }