-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1f2777
commit 2c30913
Showing
18 changed files
with
426 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/* | ||
* Slide Helper | ||
*/ | ||
|
||
*[class~='slide/slide'][data-auto-animate]:before(297), | ||
*[class~='slide/slide'][data-auto-animate-easing]:before(295), | ||
*[class~='slide/slide'][data-autoslide]:before(293), | ||
*[class~='slide/slide'][data-transition]:before(291), | ||
*[class~='slide/slide'][data-background]:before(289), | ||
*[class~='slide/slide'][data-background-color]:before(287), | ||
*[class~='slide/slide'][data-background-gradient]:before(285), | ||
*[class~='slide/slide'][data-background-image]:before(283), | ||
*[class~='slide/slide'][data-background-size]:before(281), | ||
*[class~='slide/slide'][data-background-position]:before(279), | ||
*[class~='slide/slide'][data-background-repeat]:before(277), | ||
*[class~='slide/slide'][data-background-opacity]:before(275), | ||
*[class~='slide/slide'][data-background-video]:before(273), | ||
*[class~='slide/slide'][data-background-video-loop]:before(271) { | ||
margin-bottom: 0.5em; | ||
font-size: 0.8em; | ||
color: gray; | ||
display: block; | ||
} | ||
|
||
/* @data-auto-animate */ | ||
*[class~='slide/slide'][data-auto-animate]:before(297) { | ||
content: "Activate the auto-animate mode."; | ||
} | ||
|
||
/* @data-auto-animate-easing */ | ||
*[class~='slide/slide'][data-auto-animate-easing]:before(295) { | ||
content: "The CSS easing"; | ||
} | ||
|
||
/* @data-autoslide */ | ||
*[class~='slide/slide'][data-autoslide]:before(293) { | ||
content: "Autoslide function"; | ||
} | ||
|
||
/* @data-transition */ | ||
*[class~='slide/slide'][data-transition]:before(291) { | ||
content: "Transition mode." | ||
} | ||
|
||
/* @data-transition */ | ||
*[class~='slide/slide'][data-background]:before(289) { | ||
content: "Transition mode." | ||
} | ||
|
||
/* @data-background-color */ | ||
*[class~='slide/slide'][data-background-color]:before(287) { | ||
content: "Background color." | ||
} | ||
|
||
/* @data-background-gradient */ | ||
*[class~='slide/slide'][data-background-gradient]:before(285) { | ||
content: "Background gradient." | ||
} | ||
|
||
/* @data-background-image */ | ||
*[class~='slide/slide'][data-background-image]:before(283) { | ||
content: "This is the path to a background image, relative to the DITA Map. Make sure to copy this image to the output folder by using the apropriate DITA-OT paramater." | ||
} | ||
|
||
/* @data-background-size */ | ||
*[class~='slide/slide'][data-background-size]:before(281) { | ||
content: "Background size." | ||
} | ||
|
||
/* @data-background-position */ | ||
*[class~='slide/slide'][data-background-position]:before(279) { | ||
content: "Background position." | ||
} | ||
|
||
/* @data-background-repeat */ | ||
*[class~='slide/slide'][data-background-repeat]:before(277) { | ||
content: "Background repeat." | ||
} | ||
|
||
/* @data-background-opacity */ | ||
*[class~='slide/slide'][data-background-opacity]:before(275) { | ||
content: "Background repeat." | ||
} | ||
|
||
/* @data-background-video */ | ||
*[class~='slide/slide'][data-background-video]:before(273) { | ||
content: "Background video." | ||
} | ||
|
||
/* @data-background-video-loop */ | ||
*[class~='slide/slide'][data-background-video-loop]:before(271) { | ||
content: "Background video loop." | ||
} | ||
|
||
/* @data-background-video-muted */ | ||
*[class~='slide/slide'][data-background-video-muted]:before(269) { | ||
content: "Background video mute." | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.