Reviewed-on: https://git.ayo.run/ayo/cozy-games/pulls/1 Co-authored-by: Ayo <ayo@ayco.io> Co-committed-by: Ayo <ayo@ayco.io>
45 lines
717 B
CSS
45 lines
717 B
CSS
/* helpers */
|
|
.float-left {
|
|
float: left;
|
|
}
|
|
.float-right {
|
|
float: right;
|
|
}
|
|
.clear-both {
|
|
clear: both;
|
|
}
|
|
|
|
body {
|
|
background: black;
|
|
color: #DDDDDD;
|
|
font-family: medium-content-sans-serif-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
|
|
text-align: center;
|
|
}
|
|
|
|
em {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#body-wrapper {
|
|
display: inline-block;
|
|
}
|
|
|
|
#greeting {
|
|
margin: 10px auto;
|
|
font-size: 0.95em;
|
|
color: #DDDDDD;
|
|
}
|
|
|
|
#legends-link {
|
|
margin: 20px auto;
|
|
}
|
|
|
|
#legends-link a {
|
|
color: #DDDDDD;
|
|
text-decoration-color: orange;
|
|
transition: 500ms ease-in-out;
|
|
}
|
|
|
|
#legends-link a:hover {
|
|
text-decoration-thickness: 2px;
|
|
}
|