aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/styles
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/styles')
-rw-r--r--frontend/src/styles/layout.css5
-rw-r--r--frontend/src/styles/theme.css18
2 files changed, 23 insertions, 0 deletions
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