summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_base.scss
blob: 52659521da8f95985688e0e16363390ca1f4f97e (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
html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: $body-bg;
  position: relative;
  height: 100%;
  &.white {
    background: #fff;
    > .container-fluid {
      overflow: auto;
    }
    .inner__wrap {
      > .row.content {
        min-height: 100%;
        margin-bottom: -89px;
      }
    }
  }
  .inner__wrap {
    height: 100%;
    > .row.main {
      height: 100%;
    }
  }
  > .container-fluid {
    @include clearfix;
    height: 100%;
    position: relative;
  }
}

b, strong {
  font-weight: 600;
}

a {
  word-break: break-word;
}

a.theme {
  color: $primary-color;
}

div.theme {
  background-color: $primary-color;
}

.nopadding {
 padding: 0;
 margin: 0;
}

.form-control {
  @include border-radius(2px);
  &.no-resize {
    resize: none;
  }
}

.form-group {
  &.form-group--small {
    margin-bottom: 10px;
  }
}

.error-panel {
  max-width: 275px;
  position: absolute;
  right: 10px;
  top: 40px;
  z-index: 100;
}

.btn {
  @include single-transition(all, 0.25s, ease-in);
  @include border-radius(1px);
  &.btn-primary {
    border-color: transparent;
    background: $primary-color;
    &:hover, &:focus, &:active {
      background: $primary-color--hover;
    }
  }
  &.btn-inactive {
    border-color: transparent;
    background: #707070;
    color: #fff;
  }
}

.relative-div {
  position:relative;
}

@-webkit-keyframes spin2 {
  from { -webkit-transform: rotate(0deg);}
  to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
  from { transform: scale(1) rotate(0deg);}
  to { transform: scale(1) rotate(360deg);}
}

.glyphicon-refresh-animate {
  @include animation(spin .7s infinite linear);
}

.black-bg {
  background-color: black !important;
}