150 lines
2.5 KiB
CSS
Executable File
150 lines
2.5 KiB
CSS
Executable File
/* @theme color-head */
|
|
|
|
@import "gaia";
|
|
|
|
/*
|
|
Usage:
|
|
- slides: <!-- _class: 'xxx yyy' -->
|
|
- fitting: <!-- fit -->
|
|
|
|
Classes:
|
|
- First slide: 'lead'
|
|
- Second Slides: 'divider'
|
|
- Boxes: 'box-flex box-bg'
|
|
- text: big, small, extrasmall, center
|
|
*/
|
|
|
|
/* COLOR CONFIGURATION */
|
|
:root {
|
|
--color-background: #fff;
|
|
--color-foreground: #2c2c2c;
|
|
--color-highlight: #f96;
|
|
--color-dimmed: #720606;
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
padding: 0;
|
|
}
|
|
|
|
p,li {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
header {
|
|
color: var(--color-background);
|
|
padding-top:0;
|
|
margin-top: -10px !important;
|
|
}
|
|
|
|
footer {
|
|
border-left: 2px solid;
|
|
/* border-image: linear-gradient(to right, #000 50%, transparent 50%) 100% 1; */
|
|
padding: 0px 20px;
|
|
margin: 10px 20px 10px 60px;
|
|
height: 40px;
|
|
font-size: 50%;
|
|
border-image: linear-gradient(to bottom, rgba(0,0,0,0) 33%,var(--color-dimmed) 33%,var(--color-dimmed) 100%,rgba(0,0,0,0) 75%);
|
|
border-image-slice: 1;
|
|
}
|
|
|
|
section::after {
|
|
left: 0;
|
|
height: 60px;
|
|
font-size: 50%;
|
|
color: var(--color-dimmed);
|
|
}
|
|
|
|
h1 {
|
|
background-color: var(--color-dimmed);
|
|
color: var(--color-background);
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0;
|
|
padding: 25px 25px 15px 25px;
|
|
}
|
|
|
|
blockquote {
|
|
width: 60%;
|
|
text-align: center;
|
|
align-self: center;
|
|
padding: 66px;
|
|
border-radius: 30px;
|
|
background-color: var(--color-background-stripe,transparent);
|
|
}
|
|
|
|
blockquote::before,blockquote::after {
|
|
margin: 10px;
|
|
}
|
|
|
|
table {
|
|
width: calc(100% - 80px);;
|
|
}
|
|
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p, strong,
|
|
li,ul,ol,
|
|
blockquote,
|
|
table,
|
|
code, marp-pre {
|
|
margin-left: 40px !important;
|
|
margin-right: 40px !important;
|
|
}
|
|
|
|
|
|
|
|
section.box-flex > ul{
|
|
margin: 0 !important;
|
|
height: 80%;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
align-items:stretch;
|
|
align-content: stretch;
|
|
}
|
|
|
|
section.box-flex > ul > li{
|
|
margin: 10px !important;
|
|
border-radius: 5px;
|
|
padding: 0.5em;
|
|
flex: 1 1 0;
|
|
}
|
|
|
|
section.box-bg > ul >li {
|
|
background-color: var(--color-background-stripe,transparent);
|
|
}
|
|
|
|
section.divider {
|
|
justify-content: center;
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
align-items: stretch;
|
|
}
|
|
|
|
section.divider h1 {
|
|
width: 45%;
|
|
}
|
|
|
|
section.small p,section.big li {
|
|
font-size: 1em;
|
|
}
|
|
|
|
section.small p,section.small li {
|
|
font-size: 0.6em;
|
|
}
|
|
|
|
section.extrasmall p, section.extrasmall li {
|
|
font-size: 0.4em;
|
|
}
|
|
|
|
section.center p, section.center > ul > li {
|
|
text-align: center;
|
|
}
|