55 lines
1.2 KiB
SCSS
55 lines
1.2 KiB
SCSS
|
body {
|
||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
|
text-align: center;
|
||
|
|
||
|
// Header image
|
||
|
>img {
|
||
|
width: 75%;
|
||
|
}
|
||
|
|
||
|
>h1 {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
>h2 {
|
||
|
margin: 1em 0 0.25em 0;
|
||
|
>img {
|
||
|
height: 1.25em;
|
||
|
display: inline-block;
|
||
|
vertical-align: bottom;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Inputs
|
||
|
>div,
|
||
|
form {
|
||
|
display: inline-block;
|
||
|
text-align: center;
|
||
|
width: 50%;
|
||
|
|
||
|
button,
|
||
|
input {
|
||
|
padding: 1em 0em;
|
||
|
border-radius: 5px;
|
||
|
width: 100%;
|
||
|
font-size: large;
|
||
|
display: block;
|
||
|
margin: 1em 0em;
|
||
|
border: 1px solid black;
|
||
|
text-align: center;
|
||
|
position: relative;
|
||
|
|
||
|
>img {
|
||
|
position: absolute;
|
||
|
left: 1em;
|
||
|
height: 1.25em;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
margin-top: 2em;
|
||
|
font-size: small;
|
||
|
}
|