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

github.com/JugglerX/hugo-whisper-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/components/_main-menu.scss')
-rw-r--r--assets/scss/components/_main-menu.scss32
1 files changed, 32 insertions, 0 deletions
diff --git a/assets/scss/components/_main-menu.scss b/assets/scss/components/_main-menu.scss
new file mode 100644
index 0000000..56d7d7f
--- /dev/null
+++ b/assets/scss/components/_main-menu.scss
@@ -0,0 +1,32 @@
+.main-menu {
+ display: none;
+ @include media-breakpoint-up(md) {
+ display: block;
+ }
+ > ul {
+ display: flex;
+ align-items: center;
+ justify-content: flex-start;
+ font-family: $font-family-base;
+ > li {
+ list-style: none;
+ font-size: 14px;
+ > a {
+ padding: 10px 14px 10px 14px;
+ display: inline-block;
+ font-weight: normal;
+ text-decoration: none;
+ color: $primary;
+ &:hover {
+ text-decoration: underline;
+ color: $primary;
+ }
+ }
+ &.active {
+ > a {
+ font-weight: bold;
+ }
+ }
+ }
+ }
+}