918bad1a47
Signed-off-by: Robert Nedela <robertnedela15@gmail.com>
87 lines
1.5 KiB
CSS
87 lines
1.5 KiB
CSS
/* Main body styles */
|
|
body {
|
|
background: #EEE;
|
|
color: #111;
|
|
}
|
|
|
|
/* Title / Headings */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: #444444;
|
|
}
|
|
|
|
header {
|
|
background-color: #26262e;
|
|
}
|
|
|
|
header #header-image {
|
|
height: 250px;
|
|
background: url('./images/maestrul.jpg');
|
|
background-size: cover;
|
|
background-position: center top; /* or "center center" */
|
|
padding: 1rem 2rem;
|
|
text-align: right;
|
|
}
|
|
|
|
header #header-image h1 {
|
|
display: inline-block;
|
|
background: #222;
|
|
margin-top: 1rem;
|
|
padding: 0.5rem;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Site header + navigation */
|
|
.site-header > nav {
|
|
background-color: darkmagenta;
|
|
}
|
|
.site-header .navbar-nav .nav-link {
|
|
color: #EEEEEE;
|
|
padding: 0.5em 1em;
|
|
}
|
|
.site-header .navbar-nav .nav-link:hover {
|
|
color: #ffffff;
|
|
background: #610;
|
|
border-radius: 15px;
|
|
}
|
|
.site-header .navbar-nav .nav-link.active {
|
|
font-weight: bold;
|
|
background-color: #610;
|
|
color: #ffffff !important;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
main {
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
/* content box with borders and background */
|
|
.content-box {
|
|
background: #ffffff;
|
|
padding: 10px 20px;
|
|
border: 1px solid #dddddd;
|
|
border-radius: 15px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.content-box.main-content {
|
|
min-height: 100%;
|
|
}
|
|
|
|
.news-item { color: #000; }
|
|
|
|
h1.main-title {
|
|
color: #136;
|
|
padding-bottom: 0.4em;
|
|
margin-top: 1rem;
|
|
margin-bottom: 0.7em;
|
|
border-bottom: 1px solid #DDDDDD;
|
|
}
|
|
|
|
/* yellow box for content TODO, you can remove it after completion */
|
|
.todo {
|
|
background: #FFA;
|
|
padding: 0.7rem;
|
|
font-style: italic;
|
|
}
|
|
|