Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-29 15:59:19 +02:00
committed by GitHub
parent e9ef536815
commit e12c79d493
8 changed files with 187 additions and 81 deletions

View File

@ -42,7 +42,7 @@
font-weight: bold;
position: relative;
}
.button.large {
.button.large, button.danger {
width: 95%;
}
button:hover, .button:hover {
@ -50,7 +50,17 @@
background-color:#dadada;
color:#1f2c3d;
border-color: #1f2c3d;
}
}
button.danger{
background-color:#2c0000;
border: 2px solid #d3ebff;
}
button.danger:hover{
background-color:#00020f;
border: 2px solid #791515;
color: #791515;
}
/* Header */
.header {
@ -739,6 +749,19 @@ form select option {
fieldset pre {
color: red;
}
/* Go Up button */
.go-up {
display: none;
padding: 5px;
background:#1f2c3d;
font-size: 20px;
color:#d3ebff;
cursor: pointer;
position: fixed;
bottom: 5px;
right: 20px;
}
/* Footer */
footer {

View File

@ -35,14 +35,14 @@ button, .button.large{
width: 150px;
height: 30px;
padding: 5px 10px;
background-color :#1f2c3d;
background-color:#1f2c3d;
border: 1px solid #d3ebff;
text-align: center;
color :#d3ebff;
color:#d3ebff;
font-weight: bold;
position: relative;
}
.button.large {
.button.large, button.danger {
width: 95%;
}
button:hover, .button:hover {
@ -51,6 +51,16 @@ button:hover, .button:hover {
color:#1f2c3d;
border-color: #1f2c3d;
}
button.danger{
background-color:#2c0000;
border: 2px solid #d3ebff;
}
button.danger:hover{
background-color:#d3ebff;
border: 2px solid #791515;
color: #791515;
}
/* Header */
.header {
@ -734,6 +744,19 @@ fieldset pre {
color: red;
}
/* Go Up button */
.go-up {
display: none;
padding: 5px;
background:#1f2c3d;
font-size: 20px;
color:#d3ebff;
cursor: pointer;
position: fixed;
bottom: 5px;
right: 20px;
}
/* Footer */
footer {