Projekt

Obecné

Profil

Stáhnout (2.41 KB) Statistiky
| Větev: | Tag: | Revize:
1 a9363970 mlacha
.graph {
2 c5edcbf5 lmoucka@students.zcu.cz
  margin-top: $grid-gutter-width;
3 7a83a003 lmoucka@students.zcu.cz
  min-height: calc(100% - 155px);
4 be033143 mlacha
5 c5edcbf5 lmoucka@students.zcu.cz
  .p-inputtext {
6
    border-color: $primary;
7
    color: #0B1226;
8
    background: $white;
9 a9363970 mlacha
  }
10 be033143 mlacha
11 c5edcbf5 lmoucka@students.zcu.cz
  .input-group {
12
    margin: 0;
13 a28c9b6e lmoucka@students.zcu.cz
    width: auto;
14
15
    @include media-breakpoint-down(sm) {
16
      justify-content: center;
17
      width: 100%;
18
    }
19 0e5facf6 mlacha
  }
20
21 c5edcbf5 lmoucka@students.zcu.cz
  .input-group-text {
22
    border: 1px solid $primary;
23
    background: $primary;
24
25
    i {
26
      color: #F2F2F2;
27
    }
28 be033143 mlacha
  }
29
30 c5edcbf5 lmoucka@students.zcu.cz
  .p-calendar .p-datepicker {
31
    background: $primary;
32
33
    .p-datepicker-header {
34
      background: $primary;
35
    }
36 be033143 mlacha
  }
37
38 c5edcbf5 lmoucka@students.zcu.cz
  .p-listbox {
39
    margin: 0 $grid-gutter-width;
40
    border-color: $primary;
41
    background: $white;
42 0e5facf6 mlacha
43 a28c9b6e lmoucka@students.zcu.cz
    @include media-breakpoint-down(md) {
44
      margin-top: 10px;
45
    }
46
47 c5edcbf5 lmoucka@students.zcu.cz
    .p-listbox-item {
48 0e5facf6 mlacha
      color: #0B1226;
49 c5edcbf5 lmoucka@students.zcu.cz
50
      &:not(.p-highlight):not(.p-disabled) {
51
        @include hover-focus() {
52
          color: $white;
53
          background: $primary;
54
        }
55
     }
56
57
      &.p-highlight {
58
        color: $white;
59
        background: $primary;
60
      }
61 0e5facf6 mlacha
    }
62
  }
63
64 c5edcbf5 lmoucka@students.zcu.cz
  .p-field-checkbox {
65
    display: flex;
66
    align-items: center;
67
    justify-content: space-between;
68
69
    label {
70
      margin: 5px 0;
71
    }
72 be033143 mlacha
  }
73
74 c5edcbf5 lmoucka@students.zcu.cz
  .p-checkbox{
75
    margin: 0 7px;
76 be033143 mlacha
  }
77
78 c5edcbf5 lmoucka@students.zcu.cz
  .p-checkbox-box {
79
    background: #F2F2F2;
80 be033143 mlacha
  }
81 c5edcbf5 lmoucka@students.zcu.cz
}
82 0e5facf6 mlacha
83 91e53981 lmoucka@students.zcu.cz
.graph-information {
84
  margin-bottom: $grid-gutter-width;
85
  border: 1px solid $primary;
86
  background: #F2F2F2;
87
}
88
89 c5edcbf5 lmoucka@students.zcu.cz
.graph-desc {
90 91e53981 lmoucka@students.zcu.cz
  width: 100%;
91 c5edcbf5 lmoucka@students.zcu.cz
  padding: 10px;
92 a28c9b6e lmoucka@students.zcu.cz
  font-size: 18px;
93
94
  @include media-breakpoint-down(xs) {
95
    font-size: 16px;
96
  }
97 c5edcbf5 lmoucka@students.zcu.cz
}
98 0e5facf6 mlacha
99 c5edcbf5 lmoucka@students.zcu.cz
.graph-attr-heading {
100
  font-weight: $font-weight-bold;
101
  text-transform: uppercase;
102
}
103 0e5facf6 mlacha
104 c5edcbf5 lmoucka@students.zcu.cz
.graph-range-dates {
105
  display: flex;
106
  align-items: center;
107
  justify-content: flex-start;
108 a28c9b6e lmoucka@students.zcu.cz
  flex-wrap: wrap;
109 c5edcbf5 lmoucka@students.zcu.cz
  margin-top: $grid-gutter-width;
110
  margin-bottom: $grid-gutter-width;
111
  padding: 10px $grid-gutter-width;
112 a28c9b6e lmoucka@students.zcu.cz
113
  @include media-breakpoint-down(md) {
114
    justify-content: center;
115
    padding-left: 10px;
116
    padding-right: 10px;
117
  }
118 c5edcbf5 lmoucka@students.zcu.cz
}
119
120
.graph-range-dates-separator {
121 a28c9b6e lmoucka@students.zcu.cz
  display: flex;
122
  align-items: center;
123
  justify-content: center;
124
  height: 42px;
125
126
  @include media-breakpoint-down(sm) {
127
    width: 100%;
128
  }
129
130
  div {
131
    @include size(15px,2px);
132
    margin: 0 10px;
133
    background: #0B1226;
134
  }
135 c5edcbf5 lmoucka@students.zcu.cz
}
136
137
.graph-group-heading {
138
  font-weight: $font-weight-bold;
139
  line-height: 2;
140 a9363970 mlacha
}
141 a28c9b6e lmoucka@students.zcu.cz
142
.graph-view-wrapper {
143
  padding-left: $grid-gutter-width / 2;
144
  padding-right: $grid-gutter-width / 2;
145
146
  @include media-breakpoint-down(lg) {
147
    overflow-x: scroll;
148
  }
149
}