Blame view

public/scss/style.scss 2.45 KB
bdd23ce34   Андрей Ларионов   На сервер. Правки
1
2
3
4
  @import "blocks/normalize";
  @import url(fonts.css);
  @import url(jquery.fancybox.css);
  @import url(jquery.select2.css);
1c6078a15   Андрей Ларионов   Обновление от вос...
5
  @import url(star-rating.min.css);
bdd23ce34   Андрей Ларионов   На сервер. Правки
6
7
8
9
10
11
12
13
14
15
  @import url(swiper.css);
  
  $tablet: 768px;
  $laptop: 992px;
  $desktop: 1280px;
  
  $min-width: 320px;
  $circe: "Circe", sans-serif;
  
  $transition: 0.3s;
1c6078a15   Андрей Ларионов   Обновление от вос...
16
17
  $shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  $gradient: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%);
bdd23ce34   Андрей Ларионов   На сервер. Правки
18
19
20
21
22
  
  $black: #3a3b3c;
  $white: #ffffff;
  $green: #377d87;
  $light: #acc0e6;
1c6078a15   Андрей Ларионов   Обновление от вос...
23
  $silver: #9c9d9d;
bdd23ce34   Андрей Ларионов   На сервер. Правки
24
  $blue: #4d88d9;
1c6078a15   Андрей Ларионов   Обновление от вос...
25
26
27
28
29
30
31
  $red: #eb5757;
  .green {
    color: $green;
  }
  .red {
    color: $red;
  }
bdd23ce34   Андрей Ларионов   На сервер. Правки
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
116
117
118
119
  
  $rotate180: rotate(180deg);
  .rotate180 {
    transform: $rotate180;
  }
  
  @mixin lines($numb) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: $numb;
  }
  
  ::selection {
    color: $black;
    background: $light;
  }
  
  ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ::-webkit-scrollbar-track {
    border-radius: 999px;
    background-color: #f3f3f3;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background-color: $light;
  }
  
  ::-webkit-input-placeholder {
    color: #9c9d9d;
    opacity: 1;
  }
  :focus::-webkit-input-placeholder {
    color: transparent;
  }
  :-ms-input-placeholder {
    color: #9c9d9d;
    opacity: 1;
  }
  :focus:-ms-input-placeholder {
    color: transparent;
  }
  ::-ms-input-placeholder {
    color: #9c9d9d;
    opacity: 1;
  }
  :focus::-ms-input-placeholder {
    color: transparent;
  }
  ::-moz-placeholder {
    color: #9c9d9d;
    opacity: 1;
  }
  :focus::-moz-placeholder {
    color: transparent;
  }
  ::placeholder {
    color: #9c9d9d;
    opacity: 1;
  }
  :focus::placeholder {
    color: transparent;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: border-box;
    appearance: none;
    outline: none;
    box-shadow: none;
  }
  
  a,
  button,
  select {
    color: inherit;
  }
  a {
    text-decoration: none;
  }
  a,
  input[type="button"],
  input[type="submit"],
  button {
1c6078a15   Андрей Ларионов   Обновление от вос...
120
    user-select: none;
bdd23ce34   Андрей Ларионов   На сервер. Правки
121
122
123
    transition: $transition;
    cursor: pointer;
  }
1c6078a15   Андрей Ларионов   Обновление от вос...
124
125
126
  [type=tel] {
    letter-spacing: 1px;
  }
bdd23ce34   Андрей Ларионов   На сервер. Правки
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
  .br,
  img,
  svg {
    display: block;
  }
  .float-left {
    float: left;
  }
  .float-right {
    float: right;
  }
  .clear-both {
    &:after {
      content: "";
      display: block;
      clear: both;
    }
  }
1c6078a15   Андрей Ларионов   Обновление от вос...
145
  @import "global";
bdd23ce34   Андрей Ларионов   На сервер. Правки
146
147
148
149
150
151
152
153
154
155
156
  @import "blocks/header";
  @import "blocks/footer";
  @import "blocks/main";
  @import "blocks/work";
  @import "blocks/numbers";
  @import "blocks/vacancies";
  @import "blocks/employer";
  @import "blocks/about";
  @import "blocks/news";
  @import "blocks/info";
  @import "blocks/thing";
1c6078a15   Андрей Ларионов   Обновление от вос...
157
158
159
  @import "blocks/404";
  @import "blocks/modals";
  @import "blocks/cabinet";