Blame view
public/scss_2/style.scss
2.45 KB
34d973f0f Коммит обновление... |
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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
@import "blocks/normalize"; @import url(fonts.css); @import url(jquery.fancybox.css); @import url(jquery.select2.css); @import url(star-rating.min.css); @import url(swiper.css); $tablet: 768px; $laptop: 992px; $desktop: 1280px; $min-width: 320px; $circe: "Circe", sans-serif; $transition: 0.3s; $shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2); $gradient: linear-gradient(95deg, #f2f5fc 59.82%, #ebf2fc 99.99%); $black: #3a3b3c; $white: #ffffff; $green: #377d87; $light: #acc0e6; $silver: #9c9d9d; $blue: #4d88d9; $red: #eb5757; .green { color: $green; } .red { color: $red; } $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 { user-select: none; transition: $transition; cursor: pointer; } [type=tel] { letter-spacing: 1px; } .br, img, svg { display: block; } .float-left { float: left; } .float-right { float: right; } .clear-both { &:after { content: ""; display: block; clear: both; } } @import "global"; @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"; @import "blocks/404"; @import "blocks/modals"; @import "blocks/cabinet"; |