bootstrap.local.css: add padding-bottom to footer
All checks were successful
/ deploy (push) Successful in 27s

This commit is contained in:
forgejo-actions[bot] 2024-09-08 20:15:27 +00:00
parent e6a03e20c2
commit 40a9ae3ee5
40 changed files with 1714 additions and 307 deletions

68
bootstrap.local.css vendored
View file

@ -46,10 +46,8 @@ body {
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
padding-bottom: 15px;
background-color: #f5f5f5;
}
@ -479,3 +477,67 @@ header h1::before {
color: #333;
border-color: #ccc;
}
/* Footer */
.footer ul {
margin: inherit;
padding: 0;
height: inherit;
list-style-type: none;
}
.footer h5 {
font-weight: bold;
}
.footer li a {
color: #777;
}
.footer li {
color: #777;
}
.footer p {
color: #777;
}
/* Listmonk form */
.listmonk-form {
display: table;
}
.listmonk-form .t {
display: table-cell;
width: 100%;
}
.listmonk-form a {
color: #777;
text-decoration-line: underline;
}
.listmonk-form .t > input {
width: 100%;
background: #f8f8f8;
color: #777;
text-align: left;
border-color: #ccc;
}
.listmonk-form button {
background: #f8f8f8;
color: #777;
border-color: #ccc;
margin-top: -2px;
margin-left: 12px;
}
.listmonk-form button:hover {
background: #e6e6e6;
color: #777;
border-color: #ccc;
}