Reorganize client shared modules
[oweals/peertube.git] / client / src / app / search / search-filters.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 form {
5   margin-top: 40px;
6 }
7
8 .radio-label {
9   font-size: 15px;
10   font-weight: $font-bold;
11 }
12
13 .peertube-radio-container {
14   @include peertube-radio-container;
15
16   display: inline-block;
17   margin-right: 30px;
18 }
19
20 .peertube-select-container {
21   @include peertube-select-container(auto);
22
23   margin-bottom: 1rem;
24 }
25
26 .form-group {
27   margin-bottom: 25px;
28 }
29
30 input[type=text] {
31   @include peertube-input-text(100%);
32   display: block;
33 }
34
35 input[type=submit] {
36   @include peertube-button-link;
37   @include orange-button;
38 }
39
40 .submit-button {
41   text-align: right;
42 }
43
44 .reset-button {
45   @include peertube-button;
46
47   font-weight: $font-semibold;
48   display: inline-block;
49   padding: 0 10px 0 10px;
50   white-space: nowrap;
51   background: transparent;
52
53   margin-right: 1rem;
54 }
55
56 .reset-button-small {
57   font-size: 80%;
58   height: unset;
59   line-height: unset;
60   margin: unset;
61   margin-bottom: 0.5rem;
62 }
63
64 .label-container {
65   display: flex;
66   white-space: nowrap;
67 }
68
69 @include ng2-tags;