blob: 15fb716cb92a5effc5b211550e76b92566f05c53 (
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
|
:root {
--bs-body-bg: #f5f5f5 !important;
}
html, body {
height: 100%;
}
/* Style der Eingabefelder */
form .form-control, form .form-input label {
border-radius: 0;
margin-bottom: -1px;
}
form > .form-input:first-of-type .form-control {
border-top-right-radius: 0.375rem;
border-top-left-radius: 0.375rem;
}
form > .form-input:first-of-type label {
border-top-right-radius: 0.375rem;
}
form > .form-input:last-of-type .form-control {
border-bottom-right-radius: 0.375rem;
border-bottom-left-radius: 0.375rem;
}
form > .form-input:last-of-type label {
border-bottom-right-radius: 0.375rem;
}
|