diff src/site.css @ 9:88f425d261b3

add menu
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 25 Oct 2023 18:38:07 -0600
parents 9534dd5eda89
children 62dd23f0b549
line wrap: on
line diff
--- a/src/site.css	Tue Oct 24 19:31:33 2023 -0600
+++ b/src/site.css	Wed Oct 25 18:38:07 2023 -0600
@@ -13,6 +13,23 @@
 	text-decoration: underline;
 }
 
+[onclick] {
+	cursor: pointer;
+}
+
+[pulldown] {
+	position: relative;
+}
+[pulldown_menu] {
+	display: none;
+	z-index: 20;
+	position: absolute;
+	top: 40px;
+	border: 1px solid #DDDDDD;
+	text-align: left;
+	background-color: #ffffff;
+}
+
 div[header] {
 	display: flex;
 	justify-content: space-between;
@@ -25,3 +42,8 @@
 	object-fit: cover;
 	border-radius: 50%;
 }
+
+div[header] [pulldown_menu] {
+	right: 0;
+	margin-top: 20px;
+}