aboutsummaryrefslogtreecommitdiff
path: root/src/site/assets/styles/style.scss
diff options
context:
space:
mode:
authorZephyrrus <[email protected]>2020-07-19 22:26:55 +0300
committerZephyrrus <[email protected]>2020-07-19 22:26:55 +0300
commitb49017aafd8dd3206dc7f490f54e31474527e5b7 (patch)
treecd4a2c33f7560483095cf8ba8a08fe3517e42993 /src/site/assets/styles/style.scss
parentchore: add updated yarn.lock (diff)
downloadhost.fuwn.me-b49017aafd8dd3206dc7f490f54e31474527e5b7.tar.xz
host.fuwn.me-b49017aafd8dd3206dc7f490f54e31474527e5b7.zip
chore: add custom class to inputs until fix is released on buefy's master
Diffstat (limited to 'src/site/assets/styles/style.scss')
-rw-r--r--src/site/assets/styles/style.scss94
1 files changed, 74 insertions, 20 deletions
diff --git a/src/site/assets/styles/style.scss b/src/site/assets/styles/style.scss
index 202e02a..026f277 100644
--- a/src/site/assets/styles/style.scss
+++ b/src/site/assets/styles/style.scss
@@ -10,11 +10,16 @@ $family-primary: 'Nunito', BlinkMacSystemFont, -apple-system, 'Segoe UI', 'Robot
'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
$size-normal: 1rem;
-@import '../../../node_modules/bulma/bulma.sass';
-@import '../../../node_modules/buefy/src/scss/buefy.scss';
+/* @import '../../../node_modules/bulma/bulma.sass';
+@import '../../../node_modules/buefy/src/scss/buefy.scss'; */
+
+@import "~bulma";
+@import "~buefy/src/scss/buefy";
@import '@mdi/font/css/materialdesignicons.css';
+@import './bulma-divider.scss';
+
html {
// font-size: 100%;
font-size: 14px;
@@ -204,24 +209,6 @@ section#register a.is-text {
margin-top: 5px;
}
-.input,
-.taginput .taginput-container.is-focusable,
-.textarea,
-.select select {
- border: 2px solid #21252d;
- border-radius: 0.3em !important;
- background: rgba(0, 0, 0, 0.15);
- padding: 1rem;
- color: $textColor;
- height: 3rem;
- &:focus,
- &:hover {
- border: 2px solid #21252d;
- }
- &::placeholder {
- color: $textColor;
- }
-}
/* button.button.is-primary {
background-color: #323846;
border: 2px solid #21252d;
@@ -277,6 +264,29 @@ table.table {
}
}
+.lolisafe-input input,
+.lolisafe-select select,
+.lolisafe-textarea textarea {
+ border: 2px solid #21252d;
+ border-radius: 0.3em !important;
+ background: rgba(0, 0, 0, 0.15);
+ padding: 1rem;
+ color: $textColor;
+ height: 3rem;
+ &:focus,
+ &:hover {
+ border: 2px solid #21252d;
+ }
+ &::placeholder {
+ color: $textColor;
+ }
+}
+
+.lolisafe-input .icon {
+ color: #323846 !important;
+}
+
+
// vue-bar
.vb > .vb-dragger {
z-index: 5;
@@ -345,3 +355,47 @@ table.table {
height: 3rem;
padding-right: 1rem;
}
+
+.is-marginless {
+ margin: 0 !important;
+}
+
+.fucking-opl-shut-up {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.lolisafe-on-border.field.is-floating-label .label:before {
+ background-color: $lolisafe;
+}
+
+.is-lolisafe.divider::after, .is-lolisafe.divider::before {
+ background-color: #21252d;
+}
+
+.lolisafe.taginput {
+ .taginput-container {
+ background-color: #21252d;
+ border: 2px solid #21252d;
+ border-radius: 0.3em !important;
+
+ input {
+ background-color: #21252d;
+ color: $textColor;
+ &::placeholder {
+ color: $textColor;
+ }
+ }
+
+ .icon {
+ padding-left: 15px;
+ }
+
+ &:focus,
+ &:hover,
+ &:active {
+ border: 2px solid #21252d;
+ }
+ }
+}