1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-13 00:24:34 +02:00

Compiling

This commit is contained in:
Antonio Laguna
2017-05-29 07:36:37 +02:00
parent b1b081038c
commit d3b7032c48
6 changed files with 3278 additions and 16 deletions

View File

@@ -94,7 +94,6 @@ footer nav {
}
}
.frame,
.shadow {
padding: 2.4rem;
@@ -149,12 +148,6 @@ figure.alignleft {
$sizes: 80, 70, 60, 50, 40, 30, 20;
@each $size in $avatar-sizes {
img.avatar-#{$size} {
@include square(#{$size}px);
}
}
@media (min-width: 1024px) {
@each $size in $sizes {
.size#{$size} {

View File

@@ -487,7 +487,7 @@ img.graylogo:hover {
[class*='card'] figcaption,
[class*='card'] figcaption a {
background: linear-gradient(to bottom, rgba($black 0) 0%, rgba($black, .2) 100%);
background: linear-gradient(to bottom, rgba($black, 0) 0%, rgba($black, .2) 100%);
color: $white;
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.3.1
* Date: 2017-05-01
* Date: 2017-05-29
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros
@@ -360,9 +360,9 @@ var DOM = function () {
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_dom__ = __webpack_require__(0);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Slide; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return Events; });
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_dom__ = __webpack_require__(0);
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -3002,8 +3002,8 @@ function linear(p) {
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__easing__ = __webpack_require__(20);
/* harmony export (immutable) */ __webpack_exports__["a"] = scrollTo;
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__easing__ = __webpack_require__(20);
var SCROLLABLE_CONTAINER = document.getElementById('webslides');

File diff suppressed because one or more lines are too long

View File

@@ -33,7 +33,7 @@ module.exports = {
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: 'css-loader?url=false!postcss-loader!sass-loader?sourceMap'
use: 'css-loader?url=false!postcss-loader!sass-loader'
}),
include: src
}