summaryrefslogtreecommitdiff
path: root/main.css
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-08-08 08:44:21 -0500
committerMark Powers <markppowers0@gmail.com>2020-08-08 08:44:21 -0500
commit96378c5db8da2d1e694fbe219595317ae3682f33 (patch)
treeef9897f28b7cc63109e04754f315e4c0c7418f4d /main.css
Initial commit
Diffstat (limited to 'main.css')
-rw-r--r--main.css44
1 files changed, 44 insertions, 0 deletions
diff --git a/main.css b/main.css
new file mode 100644
index 0000000..50ee09c
--- /dev/null
+++ b/main.css
@@ -0,0 +1,44 @@
+body {
+ background-color: #fff;
+}
+
+ul {
+ padding: 0px;
+}
+
+li {
+ list-style-type: none;
+ border: 1px solid #aaa;
+ margin: 10px;
+ padding: 10px;
+}
+
+li:hover {
+ background-color: #ddd;
+ cursor: pointer
+}
+
+span.name {
+ font-size: 24px;
+ display: block;
+}
+span.date {
+ margin-right: 3em;
+ display: block;
+}
+span.path {
+ display: block;
+ color: #aaa;
+}
+span span.btn {
+ background-color: #aaa;
+ color: #fff;
+ padding: 3px;
+ margin-left: 3em;
+}
+span span.btn:hover {
+ background-color: #888;
+ color: #fff;
+ padding: 3px;
+ margin-left: 3em;
+} \ No newline at end of file