aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/css
diff options
context:
space:
mode:
authorMarvin Borner2019-04-16 14:57:33 +0200
committerMarvin Borner2019-04-16 14:57:33 +0200
commita32ec653bf2acc777d64803189a03a4b07b24096 (patch)
tree25f199a5b15df8d333434e40a49d73f5274b6a10 /src/main/resources/css
parent0177a6d90f3310d81eda66193ee4f4832b6e4bbd (diff)
Added file sharing feature
Diffstat (limited to 'src/main/resources/css')
-rw-r--r--src/main/resources/css/files.css21
1 files changed, 19 insertions, 2 deletions
diff --git a/src/main/resources/css/files.css b/src/main/resources/css/files.css
index 3ceb173..c7302bf 100644
--- a/src/main/resources/css/files.css
+++ b/src/main/resources/css/files.css
@@ -45,11 +45,15 @@ colgroup col:nth-child(2) {
}
colgroup col:nth-child(3) {
- width: 30%;
+ width: 25%;
}
colgroup col:nth-child(4) {
- width: 15%;
+ width: 10%;
+}
+
+colgroup col:nth-child(5) {
+ width: 10%;
}
.drop {
@@ -70,3 +74,16 @@ colgroup col:nth-child(4) {
transform: scale(1.3);
color: red;
}
+
+.share {
+ font-size: 20px;
+ background-color: inherit;
+ border: 0;
+ z-index: 100;
+ cursor: pointer;
+}
+
+.share:hover {
+ transform: scale(1.3);
+ color: dodgerblue;
+}