Add files via upload

This commit is contained in:
Fernando Méndez 2021-03-29 01:04:48 +02:00 committed by GitHub
parent ec5bbc8d4c
commit f196283ca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ h4 {
} }
/* Buttons */ /* Buttons */
button { button, .button.large {
display: inline-block; display: inline-block;
margin: 10px; margin: 10px;
width: 150px; width: 150px;
@ -42,14 +42,16 @@ button {
font-weight: bold; font-weight: bold;
position: relative; position: relative;
} }
button:hover{ .button.large {
width: 95%;
}
button:hover, .button:hover {
cursor: pointer; cursor: pointer;
background-color:#d3ebff; background-color:#d3ebff;
color:#1f2c3d; color:#1f2c3d;
border-color: #1f2c3d; border-color: #1f2c3d;
} }
/* Header */ /* Header */
.header { .header {
background-color: #1f2c3d; background-color: #1f2c3d;
@ -164,9 +166,30 @@ table a{
font-weight: 600; font-weight: 600;
padding: 0 0.85em 0.85em 0.85em; padding: 0 0.85em 0.85em 0.85em;
} }
table thead { table thead, table tfoot {
border-bottom: solid 2px #1f2c3d; border-bottom: solid 2px #1f2c3d;
} }
table.alt {
border-collapse: separate;
}
table.alt tbody tr td {
border: solid 1px #1f2c3d;
border-left-width: 0;
border-top-width: 0;
}
table.alt tbody tr td:first-child {
border-left-width: 1px;
}
table.alt tbody tr:first-child td {
border-top-width: 1px;
}
table.alt thead, table.alt tfoot {
border-top: 0;
}
/* Main */ /* Main */
.main { .main {
@ -519,4 +542,4 @@ footer {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }