This commit is contained in:
Andre Beging
2020-03-02 08:46:33 +01:00
parent e416173a2c
commit 36e4ee776a
10 changed files with 109 additions and 4 deletions

View File

@@ -6127,6 +6127,11 @@ footer .footer-row img {
max-width: 600px;
flex-wrap: wrap;
flex-direction: row;
padding: 5px;
}
.form.success {
background-color: #daffda;
border-radius: 10px;
}
.form label {
display: block;
@@ -8093,12 +8098,17 @@ h4,
h5,
h6 {
font-family: 'SFMoviePoster', system-ui, sans-serif;
line-height: normal;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 3rem;
}
h2,
h3 {
margin-top: 20px;
@@ -8184,6 +8194,15 @@ input.btn.btn-light:hover,
a.btn.btn-light:hover {
color: #333 !important;
}
input.btn:disabled,
input.btn:disabled:hover,
a.btn:disabled,
a.btn:disabled:hover {
color: #ccc !important;
background-color: unset;
border-color: #ccc;
cursor: default;
}
body.hero {
background: linear-gradient(-45deg, #000, maroon, #000);

File diff suppressed because one or more lines are too long