Website generation with Couscous

This commit is contained in:
Milos Stojanovic
2022-09-19 21:02:24 +02:00
parent 4c95513845
commit 083bbe8994
21 changed files with 417 additions and 1638 deletions

View File

@@ -1,5 +1,15 @@
html {
position: relative;
min-height: 100%;
}
body {
font-size: 20px;
font-size: 19px;
}
@media (min-width: 1200px) {
.container {
width: 970px;
}
}
main {
@@ -7,26 +17,43 @@ main {
}
section {
margin-bottom: 50px;
margin-bottom: 120px;
}
h1, h2, h3, h4 {
color: #34b891;
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;
}
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;
}
img {
#content img {
max-width: 100%;
padding: 4px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
}
header.navbar {
@@ -35,27 +62,19 @@ header.navbar {
.navbar .navbar-brand {
font-size: 28px;
height: auto;
line-height: 50px;
line-height: 40px;
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:absolute;
position:fixed;
margin-top: 30px;
}
}
@media (max-width: 960px) {
@@ -71,36 +90,16 @@ header.navbar {
margin-top: 0;
}
#sidebar .github-star {
margin-top: 20px;
margin-left: 50px;
}
#sidebar .text-muted {
color: #859AAF;
color: #bbbbbb;
}
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;
}