aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/styles
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/styles')
-rw-r--r--frontend/src/styles/helper.css23
-rw-r--r--frontend/src/styles/layout.css5
-rw-r--r--frontend/src/styles/theme.css18
3 files changed, 46 insertions, 0 deletions
diff --git a/frontend/src/styles/helper.css b/frontend/src/styles/helper.css
index 9c520ac3..875b94f1 100644
--- a/frontend/src/styles/helper.css
+++ b/frontend/src/styles/helper.css
@@ -51,4 +51,27 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
+}
+
+.btn-clear {
+ border: unset;
+ background-color: unset;
+ outline: unset;
+ position: relative;
+}
+
+.input-icon {
+ color: var(--offwhite);
+ transform: translateY(25%);
+}
+
+.input-icon:hover {
+ color: var(--ns-primary);
+}
+
+.f-row {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
} \ No newline at end of file
diff --git a/frontend/src/styles/layout.css b/frontend/src/styles/layout.css
index e24da375..33f4cf2b 100644
--- a/frontend/src/styles/layout.css
+++ b/frontend/src/styles/layout.css
@@ -1,5 +1,10 @@
/*Mora da se ispravi za media kada je ekran premali pa se poredjaju u kolonu*/
+html,
+body {
+ height: 100%;
+}
+
.align-items-view>*:first-child {
transform: perspective(100em) rotateY(25deg) translateZ(1em);
}
diff --git a/frontend/src/styles/theme.css b/frontend/src/styles/theme.css
index d0ccc935..f2e84e8b 100644
--- a/frontend/src/styles/theme.css
+++ b/frontend/src/styles/theme.css
@@ -35,4 +35,22 @@ a {
.text-offwhite {
color: var(--offwhite) !important;
+}
+
+
+/* Ripple effect */
+
+.bubble {
+ background-position: center;
+ transition: background 0.8s;
+}
+
+.bubble:hover {
+ background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
+}
+
+.bubble:active {
+ background-color: #6eb9f7;
+ background-size: 100%;
+ transition: background 0s;
} \ No newline at end of file