88 lines
1.3 KiB
CSS
Vendored
88 lines
1.3 KiB
CSS
Vendored
/**
|
|
* Ryuuji
|
|
*/
|
|
|
|
body {
|
|
color: #212121;
|
|
line-height: 1.6em;
|
|
font-size: 1.25em;
|
|
max-width: 80ch;
|
|
padding: 2rem;
|
|
margin: auto;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #f2f2f2;
|
|
}
|
|
|
|
a {
|
|
color: #212121;
|
|
}
|
|
|
|
form label {
|
|
display: block;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
form input {
|
|
display: block;
|
|
width: 100%;
|
|
height: 2em;
|
|
border: 1px solid #212121;
|
|
border-radius: 4px;
|
|
margin-bottom: 1em;
|
|
padding: 0.4em;
|
|
}
|
|
|
|
button {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
color: #212121;
|
|
border: 1px solid #212121;
|
|
border-radius: 4px;
|
|
background-color: #fff;
|
|
font-weight: bold;
|
|
height: 3em;
|
|
padding: 0 3em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.navbar {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
border-bottom: 1px solid #f2f2f2;
|
|
}
|
|
|
|
.navbar-items {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.navbar-item a {
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
letter-spacing: 0.2rem;
|
|
text-decoration: none;
|
|
margin-left: 1em;
|
|
color: #212121;
|
|
}
|
|
|
|
.navbar-item a:hover {
|
|
color: #0fa0ce;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.navbar-items,
|
|
.navbar {
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|