decup_website/style.css

200 lines
2.4 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..700&family=JetBrains+Mono&display=swap");
html {
background-color: #333;
}
body,
h1,
h2,
h3,
label,
p,
button,
select,
input {
font-family: "Golos Text", Helvetica, Arial, sans-serif;
text-rendering: optimizeLegibility;
font-size: 16px;
color: #fff;
margin: 0;
}
h1,
h2 {
font-size: 24px;
}
label,
strong {
font-weight: 600;
}
#header {
background-color: #505050;
padding: 16px 32px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
#main {
padding: 32px;
padding-top: 0;
}
#main > .container > * {
margin-top: 32px;
}
.block {
margin-left: -16px;
margin-right: -16px;
padding: 16px;
padding-top: 0;
background-color: #505050;
border: 3px #808080 solid;
border-radius: 16px;
}
.block > * {
margin-top: 16px;
}
span.ref {
color: #ccc;
}
p.ref {
color: #ccc;
font-size: 12px;
}
.primary {
background-color: #354fcf;
color: #fff;
text-decoration: none;
font-weight: 700;
border: 0;
border-radius: 16px;
padding: 8px 16px;
line-height: 24px;
}
#header a.primary {
float: right;
}
#header h1 {
display: inline;
line-height: 40px;
}
p.details {
margin-top: 0;
margin-left: 16px;
}
address {
font-style: normal;
color: #ccc;
float: right;
}
.full {
display: block;
text-align: center;
}
a {
color: #00bcff;
}
input,
select,
textarea {
border-radius: 16px;
height: 24px;
font-size: 16px;
line-height: 16px;
padding: 6px 14px;
height: 40px;
box-sizing: border-box;
min-height: 24px;
width: 100%;
display: block;
line-height: 24px;
}
.tertiary,
input,
select,
textarea {
background-color: #505050;
border-color: #808080;
color: #fff;
}
.tertiary:hover,
input:hover,
select:hover,
textarea:hover,
#header .btns img:hover {
background-color: #4c4c4c;
}
.tertiary:focus,
#header .btns img:focus {
background-color: #4c4c4c;
}
:focus {
border-color: #ccc;
outline: none;
}
.tertiary:active,
#header .btns img:active {
background-color: #474747;
}
input,
select,
textarea {
border: 2px solid #808080;
text-decoration: none;
}
input,
select,
textarea,
.password-wrapper {
margin: 0 !important;
}
label {
margin-bottom: 4px;
display: inline-block;
}
.button.no-text > img {
width: 24px;
height: 24px;
margin-left: 0;
}
button {
border-radius: 16px;
}
.code {
font-family:
JetBrains Mono,
Consolas,
"Courier New",
Courier,
monospace;
}