summaryrefslogtreecommitdiff
path: root/utab/data/css
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@macaw.me>2020-07-04 14:23:36 +0800
committerFrederick Yin <fkfd@macaw.me>2020-07-04 14:23:36 +0800
commit0be69d4b5db18b1e0794fd3dc3297da0a16b1ccf (patch)
tree00c8f50f381d4531a3a45eeed0f9cdd1bf18f3b1 /utab/data/css
Minimal viable product
Diffstat (limited to 'utab/data/css')
-rw-r--r--utab/data/css/index.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/utab/data/css/index.css b/utab/data/css/index.css
new file mode 100644
index 0000000..5f03851
--- /dev/null
+++ b/utab/data/css/index.css
@@ -0,0 +1,32 @@
+body {
+ text-align: center;
+ background-color: #222;
+ color: white;
+ font-family: sans-serif;
+}
+
+.sites-grid {
+ position: relative;
+ left: 10%;
+ max-width: 80%;
+ max-height: 80%;
+}
+
+.sites-item {
+ border: #888 2px solid;
+ display: inline-block;
+ margin: 20px;
+ width: 80px;
+ height: 80px;
+}
+
+.sites-item:hover {
+ border: #ccc 2px solid;
+}
+
+.site-favicon {
+ width: 64px;
+ height: 64px;
+ position: relative;
+ top: 8px;
+}