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

github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/sass/components/_tab.scss')
-rw-r--r--assets/sass/components/_tab.scss57
1 files changed, 57 insertions, 0 deletions
diff --git a/assets/sass/components/_tab.scss b/assets/sass/components/_tab.scss
new file mode 100644
index 0000000..6190358
--- /dev/null
+++ b/assets/sass/components/_tab.scss
@@ -0,0 +1,57 @@
+.tab {
+ position: relative;
+ padding: 0.5rem 0;
+ margin: 2rem 0;
+
+ &__links {
+ height: 30px;
+ border-top-left-radius: 0.25rem;
+
+ @include flexbox();
+ @include align-items(center);
+ @include justify-content(flex-start);
+ @include flex-wrap(wrap);
+ }
+
+ &__link {
+ outline: none;
+ border: none;
+ cursor: pointer;
+ font-size: 13.8px;
+ font-family: $title-font;
+ text-transform: capitalize;
+ padding: 0.5rem 0.75rem;
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+
+ @include themify($themes) {
+ color: themed('navbar-title-color');
+ background-color: themed('body-background-color');
+ border: none;
+ border-bottom: 1px solid themed('hr-color');
+
+ &.active {
+ background-color: themed('body-background-color');
+ border: 1px solid themed('hr-color');
+ border-bottom: none;
+ }
+
+ @include on-event {
+ color: themed('navbar-title-hover-color');
+ background-color: themed('content-pre-header-background-color');
+ }
+ }
+ }
+
+ &__content {
+ display: none;
+ padding: 0 0.5rem;
+ border-radius: 0.25rem;
+ border-top-left-radius: 0;
+
+ @include themify($themes) {
+ border: 1px solid themed('hr-color');
+ background-color: themed('body-background-color');
+ }
+ }
+} \ No newline at end of file