1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-09-19 17:31:32 +02:00

Compare commits

..

10 Commits
1.4.0 ... 1.4.2

Author SHA1 Message Date
Antonio Laguna
71f2fd52b9 1.4.2 2017-09-12 10:16:05 +02:00
Antonio Laguna
fe58531e74 Removing unneeded class 2017-09-12 10:14:17 +02:00
Luis Sacristán
71b08f8d3b Fixing TOC 2017-09-03 19:30:05 +02:00
Antonio Laguna
e8dc32e274 1.4.1 2017-08-18 10:43:37 +02:00
Antonio Laguna
1610da683e Merge branch 'dev' 2017-08-18 10:37:56 +02:00
José Luis Antúnez
5233851f59 fixing longform alignments 2017-08-15 19:51:59 +02:00
José Luis Antúnez
eb58c83d11 header: changing the link on the logo 2017-08-15 19:50:02 +02:00
José Luis Antúnez
253e087c15 a new unsplash photo 2017-08-15 19:48:13 +02:00
José Luis Antúnez
ce4b1603d2 updating demos
header logo and a new unsplash photo
2017-08-15 19:48:05 +02:00
José Luis Antúnez
514df1b421 fixing longform alignments 2017-08-15 12:12:25 +02:00
12 changed files with 48 additions and 25 deletions

View File

@@ -1,3 +1,14 @@
# 1.4.2 (2017-09-12)
- Fixed `.toc` class. (Regression from Sass)
- Fixed baseline being incorrectly included.
# 1.4.1 (2017-08-18)
- Fixed longform alignments. (Regression from Sass)
- Updated demos to use correct reference.
- Added new unsplash to [demo](http://webslides.tv/demos/keynote).
# 1.4.0 (2017-08-14)
## Misc

View File

@@ -724,7 +724,7 @@
<!-- .end .wrap -->
</section>
<section class="bg-black aligncenter">
<span class="background light" style="background-image:url('https://source.unsplash.com/bopC0sTGu-E/')"></span>
<span class="background light" style="background-image:url('https://source.unsplash.com/UxtIESWxLh8/')"></span>
<div class="wrap">
<h2>Embedding Media</h2>
</div>

View File

@@ -81,7 +81,7 @@
<body>
<header role="banner">
<nav role="navigation">
<p class="logo"><a href="https://webslides.tv" title="WebSlides">WebSlides</a></p>
<p class="logo"><a href="../index.html" title="WebSlides">WebSlides</a></p>
<ul>
<li class="github">
<a rel="external" href="https://github.com/webslides/webslides" title="Github">

View File

@@ -66,7 +66,7 @@
<body>
<header role="banner">
<nav role="navigation">
<p class="logo"><a href="https://webslides.tv" title="WebSlides">WebSlides</a></p>
<p class="logo"><a href="../index.html" title="WebSlides">WebSlides</a></p>
<ul>
<li class="github">
<a rel="external" href="https://github.com/webslides/webslides" title="Github">

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "webslides",
"version": "1.4.0",
"version": "1.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "webslides",
"version": "1.4.0",
"version": "1.4.2",
"description": "Making HTML presentations easy",
"main": "static/js/webslides.js",
"repository": {

View File

@@ -36,11 +36,6 @@ webslides.js will add .ws-ready automatically. Don't worry :) -- */
}
}
/* -- Prototype faster - Vertical rhythm -- */
.baseline {
background: url('../images/baseline.png') left top .8rem/.8rem;
}
li li {
margin-left: 1.6rem;
}

View File

@@ -8,13 +8,13 @@
/* Why 72rem=720px?
90-95 characters per line = better reading speed */
&.alignleft,
&.alignright {
& .alignleft,
& .alignright {
max-width: 40%;
}
img.aligncenter,
.longform figure.aligncenter {
figure.aligncenter {
margin-bottom: 3.2rem;
margin-top: 3.2rem;
}

View File

@@ -64,3 +64,14 @@
}
}
}
.chapter {
display: inline-block;
font-size: 1.8rem;
line-height: 3.2rem;
padding-right: .8rem;
}
.toc-page {
float: right;
}

View File

@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.4.0
* Date: 2017-08-14
* Version: 1.4.2
* Date: 2017-09-12
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros
@@ -364,10 +364,6 @@ webslides.js will add .ws-ready automatically. Don't worry :) -- */
#webslides::-webkit-scrollbar {
display: none; }
/* -- Prototype faster - Vertical rhythm -- */
.baseline {
background: url("../images/baseline.png") left top 0.8rem/0.8rem; }
li li {
margin-left: 1.6rem; }
@@ -2400,6 +2396,15 @@ CV / News
.toc li a:hover .toc-page:before {
border-bottom-width: 2px; }
.chapter {
display: inline-block;
font-size: 1.8rem;
line-height: 3.2rem;
padding-right: .8rem; }
.toc-page {
float: right; }
/*===========================================
10. Cards
============================================= */
@@ -2823,10 +2828,11 @@ button:disabled:hover {
/* Why 72rem=720px?
90-95 characters per line = better reading speed */
/* Mobile: video full width */ }
.longform.alignleft, .longform.alignright {
.longform .alignleft,
.longform .alignright {
max-width: 40%; }
.longform img.aligncenter,
.longform .longform figure.aligncenter {
.longform figure.aligncenter {
margin-bottom: 3.2rem;
margin-top: 3.2rem; }
.longform ul,

View File

@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.4.0
* Date: 2017-08-14
* Version: 1.4.2
* Date: 2017-09-12
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros

View File

@@ -1,7 +1,7 @@
/*!
* Name: WebSlides
* Version: 1.4.0
* Date: 2017-08-14
* Version: 1.4.2
* Date: 2017-09-12
* Description: Making HTML presentations easy
* URL: https://github.com/webslides/webslides#readme
* Credits: @jlantunez, @LuisSacristan, @Belelros