mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
206 lines
3.8 KiB
Handlebars
206 lines
3.8 KiB
Handlebars
<!-- stylesheet.html.hbs start -->
|
|
<style>
|
|
body {
|
|
background-color: lightgrey;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.form-stripe {
|
|
position: relative;
|
|
min-width: 300px;
|
|
max-width: 90%;
|
|
height: auto;
|
|
min-height: 100%;
|
|
margin: 0 auto;
|
|
background-color: grey;
|
|
padding: 0 0 25px 0;
|
|
box-shadow: 0px 0px 50px 5px grey;
|
|
}
|
|
.form-header-right {
|
|
position: relative;
|
|
width: 50%;
|
|
text-align: right;
|
|
margin: 0 0 0 auto;
|
|
box-sizing: border-box;
|
|
padding: 0 25px;
|
|
}
|
|
.form-banner {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
background-color: dimgrey;
|
|
color: black;
|
|
padding: 25px;
|
|
}
|
|
.form-padded {
|
|
padding: 0 25px;
|
|
}
|
|
input:required:invalid.form-input-box {
|
|
border-color: red;
|
|
}
|
|
input:required:invalid.form-input-box::after {
|
|
content: "*required";
|
|
color: red;
|
|
font-size: 12px;
|
|
}
|
|
input {
|
|
width: 100%;
|
|
border: thin solid white;
|
|
background-color: lightgrey;
|
|
}
|
|
input[type=submit] {
|
|
cursor: pointer;
|
|
}
|
|
.form-submit {
|
|
margin: 0 auto;
|
|
}
|
|
.form-submit-button {
|
|
background-color: black;
|
|
color: lightgrey;
|
|
}
|
|
.input-required-hint::after {
|
|
color: red;
|
|
/*content: "*required";*/
|
|
font-size: 12px;
|
|
}
|
|
h1, h2, h3, h4, h5 {
|
|
text-align: center;
|
|
}
|
|
a { text-decoration-line: none; }
|
|
a:link { color: darkgrey; }
|
|
a:hover { color: white; }
|
|
a:visited { color: lightgrey; }
|
|
a:active { color: white; }
|
|
a.box-details-link { text-decoration-line: underline; }
|
|
a.box-details-link:link { color: black; }
|
|
a.box-details-link:hover { color: white; }
|
|
a.box-details-link:visited { color: black; }
|
|
a.box-details-link:active { color: white; }
|
|
form {
|
|
padding-top: 25px;
|
|
padding-left: 25px;
|
|
padding-right: 25px;
|
|
padding-bottom: 250px;
|
|
}
|
|
.inline-form {
|
|
padding: 0;
|
|
display: contents;
|
|
}
|
|
.form-error {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
background-color: orange;
|
|
}
|
|
.form-error-message {
|
|
padding: 25px;
|
|
margin: 0 auto;
|
|
width: 95%;
|
|
}
|
|
.form-success {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
background-color: chartreuse;
|
|
}
|
|
.form-success-message {
|
|
padding: 25px;
|
|
margin: 0 auto;
|
|
width: 95%;
|
|
}
|
|
.form-text-block {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
}
|
|
.access-grid {
|
|
width: 80%;
|
|
display: grid;
|
|
margin: 0 auto;
|
|
padding: 5px;
|
|
grid-template-columns: auto auto auto auto;
|
|
gap: 5px;
|
|
}
|
|
.access-list {
|
|
width: 80%;
|
|
display: flex;
|
|
padding: 5px;
|
|
margin: 0 auto;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
.access-box {
|
|
background-color: dimgrey;
|
|
color: black;
|
|
padding: 5px 0;
|
|
text-align: center;
|
|
}
|
|
.access-row-box {
|
|
background-color: dimgrey;
|
|
color: black;
|
|
padding: 5px 0;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
.access-row-box-input {
|
|
padding: 5px;
|
|
}
|
|
.access-box-title {
|
|
padding: 5px;
|
|
margin: 0 auto;
|
|
}
|
|
.access-box-banner {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
background-color: black;
|
|
color: lightgrey;
|
|
padding: 5px;
|
|
}
|
|
.box-details {
|
|
text-align: left;
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
gap: 2px;
|
|
padding: 5px;
|
|
}
|
|
.box-details-key {
|
|
padding: 0 5px;
|
|
background-color: black;
|
|
color: lightgrey;
|
|
text-align: left;
|
|
}
|
|
.box-details-value {
|
|
padding: 0 5px;
|
|
background-color: lightgrey;
|
|
color: black;
|
|
text-align: left;
|
|
}
|
|
.box-details-input {
|
|
padding: 0;
|
|
margin: auto 0;
|
|
}
|
|
.box-details-input-text {
|
|
padding-right: 6px;
|
|
}
|
|
.export-plugin {
|
|
color: white;
|
|
}
|
|
footer {
|
|
position: relative;
|
|
width: 100%
|
|
margin: 0 auto;
|
|
background-color: black;
|
|
}
|
|
.footer {
|
|
width: 95%;
|
|
color: lightgrey;
|
|
box-sizing: border-box;
|
|
padding: 25px;
|
|
}
|
|
</style>
|
|
<!-- stylesheet.html.hbs end -->
|