-
Notifications
You must be signed in to change notification settings - Fork 0
/
sudoers-landing-slide.html
38 lines (37 loc) · 1.21 KB
/
sudoers-landing-slide.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
<dom-module id="sudoers-landing-slide">
<template>
<style>
:host {
max-width: 1200px;
display: block;
color: var(--slide-fg-color);
background-color: var(--slide-bg-color);
padding: 0 0 var(--slide-vmargin) 0;
margin: 0 auto 0 auto;
}
:host:not(:last-child) {
min-height: calc( 100vh - var(--slide-vmargin) - var(--next-slide-border-height) );
border-bottom: var(--next-slide-border-height) solid var(--accent-s-color);
}
:host:last-child {
min-height: calc( 100vh - var(--slide-vmargin) );
}
:host::content.slide-content {
@apply (--layout-horizontal);
@apply (--layout-wrap);
@apply (--layout-center-justified);
}
</style>
<content></content>
</template>
</dom-module>
<script>
(function() {
'use strict';
Polymer({
is: 'sudoers-landing-slide'
});
})();
</script>