Projekt

Obecné

Profil

Stáhnout (2.41 KB) Statistiky
| Větev: | Tag: | Revize:
1
.graph {
2
  margin-top: $grid-gutter-width;
3
  min-height: calc(100% - 155px);
4

    
5
  .p-inputtext {
6
    border-color: $primary;
7
    color: #0B1226;
8
    background: $white;
9
  }
10

    
11
  .input-group {
12
    margin: 0;
13
    width: auto;
14

    
15
    @include media-breakpoint-down(sm) {
16
      justify-content: center;
17
      width: 100%;
18
    }
19
  }
20

    
21
  .input-group-text {
22
    border: 1px solid $primary;
23
    background: $primary;
24

    
25
    i {
26
      color: #F2F2F2;
27
    }
28
  }
29

    
30
  .p-calendar .p-datepicker {
31
    background: $primary;
32

    
33
    .p-datepicker-header {
34
      background: $primary;
35
    }
36
  }
37

    
38
  .p-listbox {
39
    margin: 0 $grid-gutter-width;
40
    border-color: $primary;
41
    background: $white;
42

    
43
    @include media-breakpoint-down(md) {
44
      margin-top: 10px;
45
    }
46

    
47
    .p-listbox-item {
48
      color: #0B1226;
49

    
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
    }
62
  }
63

    
64
  .p-field-checkbox {
65
    display: flex;
66
    align-items: center;
67
    justify-content: space-between;
68

    
69
    label {
70
      margin: 5px 0;
71
    }
72
  }
73

    
74
  .p-checkbox{
75
    margin: 0 7px;
76
  }
77

    
78
  .p-checkbox-box {
79
    background: #F2F2F2;
80
  }
81
}
82

    
83
.graph-information {
84
  margin-bottom: $grid-gutter-width;
85
  border: 1px solid $primary;
86
  background: #F2F2F2;
87
}
88

    
89
.graph-desc {
90
  width: 100%;
91
  padding: 10px;
92
  font-size: 18px;
93

    
94
  @include media-breakpoint-down(xs) {
95
    font-size: 16px;
96
  }
97
}
98

    
99
.graph-attr-heading {
100
  font-weight: $font-weight-bold;
101
  text-transform: uppercase;
102
}
103

    
104
.graph-range-dates {
105
  display: flex;
106
  align-items: center;
107
  justify-content: flex-start;
108
  flex-wrap: wrap;
109
  margin-top: $grid-gutter-width;
110
  margin-bottom: $grid-gutter-width;
111
  padding: 10px $grid-gutter-width;
112

    
113
  @include media-breakpoint-down(md) {
114
    justify-content: center;
115
    padding-left: 10px;
116
    padding-right: 10px;
117
  }
118
}
119

    
120
.graph-range-dates-separator {
121
  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
}
136

    
137
.graph-group-heading {
138
  font-weight: $font-weight-bold;
139
  line-height: 2;
140
}
141

    
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
}
(3-3/9)