Converting to Webpack. Stage 1.
Этот коммит содержится в:
19
webapp/sass/utils/_animations.scss
Обычный файл
19
webapp/sass/utils/_animations.scss
Обычный файл
@@ -0,0 +1,19 @@
|
||||
@charset 'UTF-8';
|
||||
|
||||
@-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);
|
||||
}
|
||||
}
|
||||
9
webapp/sass/utils/_functions.scss
Обычный файл
9
webapp/sass/utils/_functions.scss
Обычный файл
@@ -0,0 +1,9 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
@function em($pixels, $context: 14px) {
|
||||
@return #{$pixels/$context}em
|
||||
}
|
||||
|
||||
%popover-box-shadow {
|
||||
@include box-shadow(rgba(black, .175) 1px -3px 12px);
|
||||
}
|
||||
8
webapp/sass/utils/_mixins.scss
Обычный файл
8
webapp/sass/utils/_mixins.scss
Обычный файл
@@ -0,0 +1,8 @@
|
||||
@charset 'UTF-8';
|
||||
|
||||
@mixin file-icon($path) {
|
||||
background: #fff url($path);
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
@include background-size(60px auto);
|
||||
}
|
||||
5
webapp/sass/utils/_module.scss
Обычный файл
5
webapp/sass/utils/_module.scss
Обычный файл
@@ -0,0 +1,5 @@
|
||||
// Only for combining all the files in this folder
|
||||
@import 'variables';
|
||||
@import 'animations';
|
||||
@import 'functions';
|
||||
@import 'mixins';
|
||||
13
webapp/sass/utils/_variables.scss
Обычный файл
13
webapp/sass/utils/_variables.scss
Обычный файл
@@ -0,0 +1,13 @@
|
||||
@charset 'UTF-8';
|
||||
|
||||
// Color Variables
|
||||
$color--primary: rgb(35, 137, 215);
|
||||
$color--primary--hover: darken($color--primary, 10%);
|
||||
$bg--gray: rgb(245, 245, 245);
|
||||
$bg--white: rgb(255, 255, 255);
|
||||
|
||||
// Page Variables
|
||||
$border-gray: 1px solid #ddd;
|
||||
|
||||
// Random variables
|
||||
$border-rad: 1px;
|
||||
Ссылка в новой задаче
Block a user