krata/_sass/addon/module.scss

164 lines
2.6 KiB
SCSS
Raw Normal View History

2020-02-25 10:56:03 +01:00
/*
* Mainly scss modules, only imported to `assets/css/main.scss`
*/
2020-08-19 15:18:14 +02:00
/* ---------- scss placeholder --------- */
2020-02-25 10:56:03 +01:00
2021-04-10 19:18:19 +02:00
%heading {
color: var(--heading-color);
font-weight: 400;
font-family: $font-family-heading;
2021-04-10 19:18:19 +02:00
}
2021-12-05 19:40:51 +01:00
%section {
#core-wrapper & {
margin-top: 2.5rem;
margin-bottom: 1.25rem;
&:focus {
outline: none; /* avoid outline in Safari */
}
2021-12-05 19:40:51 +01:00
}
}
%anchor {
.anchor {
font-size: 80%;
2021-12-05 19:40:51 +01:00
}
2021-12-09 13:45:20 +01:00
@media (hover: hover) {
.anchor {
2021-12-09 13:45:20 +01:00
visibility: hidden;
opacity: 0;
transition: opacity 0.25s ease-in, visibility 0s ease-in 0.25s;
}
&:hover {
.anchor {
2021-12-09 13:45:20 +01:00
visibility: visible;
opacity: 1;
transition: opacity 0.25s ease-in, visibility 0s ease-in 0s;
}
2021-12-05 19:40:51 +01:00
}
}
}
2020-02-25 10:56:03 +01:00
%tag-hover {
background: var(--tag-hover);
2020-02-25 10:56:03 +01:00
transition: background 0.35s ease-in-out;
}
%table-cell {
2020-08-19 15:18:14 +02:00
padding: 0.4rem 1rem;
2020-02-25 10:56:03 +01:00
font-size: 95%;
2020-12-13 18:54:29 +01:00
white-space: nowrap;
2020-02-25 10:56:03 +01:00
}
%link-hover {
2020-08-19 15:18:14 +02:00
color: #d2603a !important;
2020-02-25 10:56:03 +01:00
border-bottom: 1px solid #d2603a;
text-decoration: none;
}
%link-color {
color: var(--link-color);
2020-02-25 10:56:03 +01:00
}
2020-02-28 17:16:47 +01:00
%link-underline {
border-bottom: 1px solid var(--link-underline-color);
}
2021-09-21 12:00:29 +02:00
%clickable-transition {
transition: color 0.35s ease-in-out;
}
%no-cursor {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
2020-02-25 10:56:03 +01:00
%no-bottom-border {
border-bottom: none;
}
%cursor-pointer {
cursor: pointer;
}
%normal-font-style {
font-style: normal;
}
%rounded {
border-radius: 6px;
}
2022-01-12 18:07:47 +01:00
%img-caption {
+ em {
display: block;
text-align: center;
font-style: normal;
font-size: 80%;
padding: 0;
color: #6d6c6c;
}
}
2022-01-21 10:46:01 +01:00
%sidebar-links {
color: rgba(117, 117, 117, 0.9);
-webkit-user-select: none;
-moz-user-select: none;
2022-01-21 10:46:01 +01:00
user-select: none;
}
2020-08-19 15:18:14 +02:00
/* ---------- scss mixin --------- */
2020-02-25 10:56:03 +01:00
@mixin no-text-decoration {
text-decoration: none;
}
@mixin mt-mb($value) {
margin-top: $value;
margin-bottom: $value;
}
2020-02-25 10:56:03 +01:00
@mixin ml-mr($value) {
margin-left: $value;
margin-right: $value;
}
@mixin pl-pr($val) {
padding-left: $val;
padding-right: $val;
}
@mixin input-placeholder {
opacity: 0.6;
}
2020-04-07 14:23:57 +02:00
@mixin label($font-size: 1rem, $font-weight: 600, $color: var(--label-color)) {
color: $color;
font-size: $font-size;
font-weight: $font-weight;
}
2020-09-02 12:25:57 +02:00
@mixin align-center {
position: relative;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
2022-01-21 10:46:01 +01:00
@mixin prompt($type, $fa-content, $fa-style: 'solid') {
2022-01-21 10:46:01 +01:00
&.prompt-#{$type} {
background-color: var(--prompt-#{$type}-bg);
&::before {
content: $fa-content;
2022-01-21 10:46:01 +01:00
color: var(--prompt-#{$type}-icon-color);
font: var(--fa-font-#{$fa-style});
2022-01-21 10:46:01 +01:00
}
}
}