summaryrefslogtreecommitdiff
path: root/site/assets/css/applets.css
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-01-04 23:37:34 +0100
committerJules Laplace <julescarbon@gmail.com>2019-01-04 23:37:34 +0100
commit276c16e1055c23350abd3d9d071cfce9b4f1b27f (patch)
treeb85c3b3c8ff0f7bfb77323d3f77be0f88bb3086f /site/assets/css/applets.css
parente5b6ef658e936c32d9500ff7f781171d9785315a (diff)
rm rotation on homepage, add dataset list
Diffstat (limited to 'site/assets/css/applets.css')
-rw-r--r--site/assets/css/applets.css24
1 files changed, 23 insertions, 1 deletions
diff --git a/site/assets/css/applets.css b/site/assets/css/applets.css
index 315d72e0..9c37354a 100644
--- a/site/assets/css/applets.css
+++ b/site/assets/css/applets.css
@@ -65,12 +65,17 @@
}
.cta {
padding-left: 20px;
- font-size: 11pt;
+ font-size: 10pt;
}
.cta ol {
margin: 0;
padding: 0 0 20px 20px;
}
+
+.searchContainer {
+ padding-top: 20px;
+}
+
.uploadContainer > div {
position: relative;
width: 300px;
@@ -98,3 +103,20 @@
.uploadContainer img {
max-width: 40px;
}
+
+
+/* tabulator */
+
+.tabulator-row {
+ transition: background-color 100ms cubic-bezier(0,0,1,1);
+ background-color: rgba(255,255,255,0.0);
+}
+.desktop .tabulator-row:hover {
+ background-color: rgba(255,255,255,0.2);
+}
+.tabulator-row.tabulator-row-odd {
+ background-color: rgba(255,255,255,0.05);
+}
+.tabulator-row.tabulator-row-even {
+ background-color: rgba(255,255,255,0.1);
+} \ No newline at end of file