view 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 source

* {
	box-sizing: border-box;
}

body {
	font-family: Sans-Serif;
}

a {
	text-decoration: none;
}
a:hover {
	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;
	align-items: center;
}

div[header] img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 50%;
}

div[header] [pulldown_menu] {
	right: 0;
	margin-top: 20px;
}