Add files via upload

This commit is contained in:
Fernando Méndez 2021-05-21 09:19:01 +02:00 committed by GitHub
parent 038de91627
commit 0b38e804f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 68 additions and 59 deletions

View File

@ -282,7 +282,7 @@
} }
/* Code & Blockquote */ /* Code & Blockquote */
.code { .code {
background: #1f2c3d; background: #1f2c3d;
border-radius: 3px; border-radius: 3px;
font-size: 0.9em; font-size: 0.9em;
@ -292,54 +292,58 @@
padding: 1em 1.5em; padding: 1em 1.5em;
overflow-x: auto; overflow-x: auto;
overflow-y: auto; overflow-y: auto;
} }
.code h1, .code h2{ .code h1, .code h2{
color: #dadada; color: #dadada;
} }
.code h3, .code h4 { .code h3, .code h4 {
color: #d3ebff; color: #d3ebff;
} }
.code p { .code p {
color: #dadada; color: #dadada;
} }
.code a { .code a {
text-decoration: underline; text-decoration: underline;
} }
.code ul, .code ol, .code li{ .code ul, .code ol, .code li {
color: #dadada; color: #dadada;
} }
.code img{ .code img{
/* width: 80px; height: 80px; */ /* width: 80px; height: 80px; */
width: 25%; width: 25%;
} }
.code fieldset{ .code fieldset{
margin: 1px; margin: 1px;
border-color: #dadada; border-color: #dadada;
border-style: groove; border-style: groove;
} }
.code fieldset legend { .code fieldset legend {
text-transform: uppercase; text-transform: uppercase;
font-weight: bold; font-weight: bold;
font-size: 90%; font-size: 90%;
color: #d3ebff; color: #d3ebff;
} }
.code label{ .code label{
color: #d3ebff; color: #d3ebff;
} }
.code.details{ .code.details{
height: 750px; height: 750px;
} }
.code.plan { .code.plan {
height: 1150px; height: 1150px;
} }
.code.info{ .code.info{
text-align: center; text-align: center;
height: 250px; height: 250px;
} }
.code.showtimes{ .code.showtimes{
height: 600px; height: 500px;
} }
.code.showtimes p{
height: 5em;
overflow-x: auto;
overflow-y: auto;
}
/* BlockQuotes */ /* BlockQuotes */
.blockquote { .blockquote {

View File

@ -336,7 +336,12 @@ main img {
height: 250px; height: 250px;
} }
.code.showtimes{ .code.showtimes{
height: 600px; height: 500px;
}
.code.showtimes p{
height: 5em;
overflow-x: auto;
overflow-y: auto;
} }