Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/spech66/flex-bp-hugo-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/main.css')
-rw-r--r--assets/css/main.css45
1 files changed, 41 insertions, 4 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index 786b258..a8b4cbc 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -8,6 +8,10 @@
margin: 0;
}
+html {
+ scroll-behavior: smooth;
+}
+
/*******************************************************************************
* Flexbox and base colors
******************************************************************************/
@@ -33,19 +37,19 @@ body.dark-theme {
}
.sidebar {
- background: green;
+ background: #eeeeee;
}
body.dark-theme .sidebar {
- background: red;
+ background: #333333;
}
main {
- background: green;
+ background: #ffffff;
}
body.dark-theme main {
- background: red;
+ background: #444;
}
/*******************************************************************************
@@ -82,3 +86,36 @@ a {
body.dark-theme a {
color: #ff0000;
}
+
+img {
+ width: 100%;
+ object-fit: cover;
+}
+
+/*******************************************************************************
+ * Navigaton
+ ******************************************************************************/
+
+nav {
+ position: sticky;
+ top: 2rem;
+ white-space: nowrap;
+}
+
+nav ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+nav ul li a {
+ display: block;
+ padding: 0.5rem 1rem;
+ color: red;
+ text-decoration: none;
+}
+
+nav ul li.active {
+ background: black;
+ transition: all 200ms ease-in-out;
+}