Converting to Webpack. Stage 1.

Этот коммит содержится в:
Christopher Speller
2016-03-14 08:50:46 -04:00
родитель 29fe6a3d13
Коммит 12896bd23e
4950 изменённых файлов: 10935 добавлений и 1604875 удалений

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 Обычный файл
Просмотреть файл

@@ -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 Обычный файл
Просмотреть файл

@@ -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 Обычный файл
Просмотреть файл

@@ -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 Обычный файл
Просмотреть файл

@@ -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;