summaryrefslogtreecommitdiff
path: root/plugins/Customizer/Assets/css/customizer.css
blob: 9423a4d5801450d497668dbec8c037b5d5d300d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/* KANBOARD PLUGIN - CUSTOMIZER CSS FILE */

/*------ PAGE HEADER ------*/
.logo > a > img {vertical-align:middle;} /* This aligns the logo certically to the text */

.logo a {
	opacity:1.0;
}

/*------ LOGIN PAGE-SPECIFIC STYLES MOVED TO logintop.php SO THEY WON'T AFFECT OTHER PARTS OF KANBOARD ------*/


/*------ PLUGIN SETTINGS PAGE ------*/
.form-help {margin-top: 5px;} /* This gives line spacing above the help text */

code {
	margin: 0;
	/*padding: 2px 0.4em;*/
	background-color: rgba(27, 31, 35, 0.32);
	border-radius: 3px;
	color: #FFF;
	font-family: Tahoma;
	font-size: 95%!important;
	letter-spacing: 1px;
} /* This styles the url link examples */

.login-link-block > label {
	font-weight: bold;
	margin-bottom: 5px;
} /* This is to highlight the title fields */

.panel-heading {
	margin: -2px -25px;
	float: right;
	font-size: 1.2em;
} /* This adds a heading area to each section */

.panel-title {
	margin-top: 0;
	font-weight: bold;
} /* This is the title text for the heading area */

.links-title {
	margin: -2px 25px;
} /* This is the title text for the links heading area, styled uniquely as the type is fieldset */

.upload-link {
	float: left;
	list-style: outside none none;
	width: auto;
	display: block;
	margin: 0px 10px;
} /* This places the upload link on the same line as the remove link */

.remove-link {
	float: left;
	list-style: outside none none;
	width: auto;
	display: block;
	margin: 0px 10px;
} /* This places the upload link on the same line as the remove link */

.upload-link > a > i {
	color: green;
} /* This colours the upload icon to green */

.remove-link > a > i {
	color: red;
} /* This colours the upload icon to red */

/* Style the buttons that are used to open and close the accordion panel */
.login-accordion {
    font-weight: bold;
    background-color: rgba(136,136,136,0.7);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 5px;
    box-shadow: 0 1px 3px 0px rgba(70, 70, 70, 0.10);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.login-accordion:hover {
    background-color: #f5f5f5;
    color: #777777;
    transition: 0.4s;
}

.current {
    background-color: #f5f5f5;
    color: #777777;
    transition: 0.4s;
}

/* Style the accordion panel. Note: hidden by default */
.login-accordian-panel {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
}

div.login-accordian-panel.show {
    opacity: 1;
    max-height: 5000px;
}

.title-creator {
	border-left: 5px solid #333;
    padding-left: 8px;
}

/* 
* Short classes 
* m - for classes that set margin
* p - for classes that set padding
* t - for classes that set margin-top or padding-top
* b - for classes that set margin-bottom or padding-bottom
* l - for classes that set margin-left or padding-left
* r - for classes that set margin-right or padding-right
* number(5) - for classes that set the margin or padding 
*/

.mt-5 {
	margin-top: 5px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.ml-5 {
	margin-left: 5px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-15 {
	margin-left: 15px;
}

.ml-20 {
	margin-left: 20px;
}

.mr-5 {
	margin-right: 5px;
}

.mr-10 {
	margin-right: 10px;
}

.mr-15 {
	margin-right: 15px;
}

.mr-20 {
	margin-right: 20px;
}

.pt-5 {
	padding-top: 5px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-15 {
	padding-top: 15px;
}

.pt-20 {
	padding-top: 20px;
}

.pb-5 {
	padding-bottom: 5px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pl-5 {
	padding-left: 5px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-15 {
	padding-left: 15px;
}

.pl-20 {
	padding-left: 20px;
}

.pr-5 {
	padding-right: 5px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-15 {
	padding-right: 15px;
}

.pr-20 {
	padding-right: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}