Website generation with Couscous

This commit is contained in:
Milos Stojanovic
2022-09-19 21:03:40 +02:00
parent 083bbe8994
commit 409fa13bd2
21 changed files with 1638 additions and 413 deletions

View File

@@ -1,15 +1,5 @@
html {
position: relative;
min-height: 100%;
}
body {
font-size: 19px;
}
@media (min-width: 1200px) {
.container {
width: 970px;
}
font-size: 20px;
}
main {
@@ -17,43 +7,26 @@ main {
}
section {
margin-bottom: 120px;
margin-bottom: 50px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
background-color: #f5f5f5;
padding: 25px 0;
font-size: 15px;
text-align: center;
text-transform: uppercase;
opacity: 0.6;
transition: opacity .2s ease;
h1, h2, h3, h4 {
color: #34b891;
}
footer:hover {
opacity: 1.0;
transition: opacity .2s ease;
}
footer p {
margin: 0;
}
h3 {
font-size: 23px;
}
a, a:hover {
color: #34b891;
}
li {
margin-bottom: 3px;
}
#content img {
img {
max-width: 100%;
padding: 4px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
}
header.navbar {
@@ -62,19 +35,27 @@ header.navbar {
.navbar .navbar-brand {
font-size: 28px;
height: auto;
line-height: 40px;
line-height: 50px;
margin-left: 20px;
color: #34b891;
}
.navbar a.navbar-brand:hover {
color: #34b891;
}
.navbar .navbar-brand small {
font-size: 18px;
font-weight: 300;
margin-left: 10px;
color: white;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
background-color: #34b891;
}
@media (min-width: 768px) {
#sidebar {
position:fixed;
margin-top: 30px;
position:absolute;
}
}
@media (max-width: 960px) {
@@ -90,16 +71,36 @@ header.navbar {
margin-top: 0;
}
#sidebar .github-star {
margin-top: 20px;
margin-left: 50px;
}
#sidebar .text-muted {
color: #bbbbbb;
color: #859AAF;
}
pre {
padding: 0;
border-color: #3D5166;
background-color: #1D2B3A;
border-radius: 4px;
margin: 15px;
font-size: 15px;
}
pre code {
border: none;
background-color: #1D2B3A;
}
code {
font-size: 85%;
padding: 4px 4px 1px;
margin: 0 4px;
border-radius: 3px;
color: #c5c8c6;
border: solid 1px #3D5166;
background-color: #1D2B3A;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
word-wrap: break-word;
}