124 lines
2.4 KiB
CSS
124 lines
2.4 KiB
CSS
/* Fuse Core Jekyll Theme */
|
|
|
|
html, body {
|
|
font-family: 'Open Sans',Arial,Helvetica,sans-serif;
|
|
}
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
body {
|
|
margin-bottom: 44px; /* footer height */
|
|
}
|
|
.fullscreen-background {
|
|
background: url("../images/background.jpg") no-repeat center center fixed;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
|
|
|
|
/* --------- Content (avatar, title, normal links) --------------------------------------------- */
|
|
|
|
div.glass-pane {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
width: 100%;
|
|
min-height: 42vh; /* always cover at least the sky */
|
|
}
|
|
|
|
div.fuse-core-content {
|
|
color: white;
|
|
}
|
|
#avatar {
|
|
height: 180px;
|
|
border-radius: 100%;
|
|
border: 5px solid white;
|
|
}
|
|
h1 {
|
|
letter-spacing: 0.1em;
|
|
font-size: 3em;
|
|
}
|
|
h3 {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
div.row.links > div {
|
|
white-space: nowrap;
|
|
padding: 0;
|
|
}
|
|
div.row.links a > i {
|
|
display: inline-block;
|
|
margin: 16px 12px;
|
|
}
|
|
div.row.links a > span {
|
|
margin-right: 15px;
|
|
}
|
|
div.row.links a {
|
|
color: white;
|
|
border-radius: 100%;
|
|
border: 2px solid white;
|
|
display: inline-block;
|
|
font-size: 1.8em;
|
|
line-height: 1em;
|
|
overflow: hidden;
|
|
}
|
|
div.row.links a:hover {
|
|
text-decoration: none;
|
|
-webkit-transition: 300ms;
|
|
-moz-transition: 300ms;
|
|
transition: 300ms;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
@media (max-width: 575.98px) { /* bootstrap 'xs' */
|
|
h1 {
|
|
letter-spacing: 0;
|
|
}
|
|
div.row.links a {
|
|
border-radius: 10px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
/* --------- Featured Links -------------------------------------------------------------------- */
|
|
|
|
div.row.links.featured a {
|
|
color: #f9cf93;
|
|
border-color: #f9cf93;
|
|
}
|
|
div.row.links.featured a:hover {
|
|
color: #ffe4be;
|
|
border-color: #ffe4be;
|
|
}
|
|
div.row.links.featured .fc-caption {
|
|
color: #f9cf93;
|
|
line-height: 14px;
|
|
font-size: smaller;
|
|
}
|
|
|
|
|
|
/* --------- Footer ---------------------------------------------------------------------------- */
|
|
|
|
footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
height: 44px;
|
|
line-height: 24px;
|
|
padding: 10px 0;
|
|
width: 100%;
|
|
font-size: smaller;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
footer .col {
|
|
padding: 0;
|
|
}
|
|
footer a {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
footer a:hover {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|