aboutsummaryrefslogtreecommitdiff
path: root/src/styles.css
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-19 16:02:43 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-19 16:02:43 +0200
commita9358fb8a27cd3d48547f5427797702ee2780de8 (patch)
tree7925fe254d47f25b9a1322270cb18664f5c7f397 /src/styles.css
parent5880656282edfb7dc1bb7073c20ccf74aad6a093 (diff)
downloadDevHive-Angular-a9358fb8a27cd3d48547f5427797702ee2780de8.tar
DevHive-Angular-a9358fb8a27cd3d48547f5427797702ee2780de8.tar.gz
DevHive-Angular-a9358fb8a27cd3d48547f5427797702ee2780de8.zip
Implemented navbar component; added some global stylings and changed the name of others; added icons
Diffstat (limited to 'src/styles.css')
-rw-r--r--src/styles.css28
1 files changed, 23 insertions, 5 deletions
diff --git a/src/styles.css b/src/styles.css
index b187391..75fe905 100644
--- a/src/styles.css
+++ b/src/styles.css
@@ -201,10 +201,22 @@ input[type=file]::file-selector-button {
/* General padding */
-.small-padding {
+.padding-normal {
+ padding: 0.4em;
+}
+
+.padding-smaller {
+ padding: 0.3em;
+}
+
+.padding-small {
padding: 0.2em;
}
+.padding-tiny {
+ padding: 0.1em;
+}
+
/* Cards */
.card {
@@ -218,18 +230,24 @@ input[type=file]::file-selector-button {
/* Effects */
-.lighter-hover:hover {
+.lighter-hover:hover, .light-hover:hover, .hover-half-opacity:hover {
cursor: pointer;
+}
+
+.lighter-hover:hover {
background: #424242;
}
-.click-effect:active {
- transform: scale(0.9);
+.light-hover:hover {
+ background: #696969;
}
.hover-half-opacity:hover {
opacity: 0.5;
- cursor: pointer;
+}
+
+.click-effect:active {
+ transform: scale(0.9);
}
/* Inputs, the type found in login and register */