view src/site.css @ 11:62dd23f0b549

start add server
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 29 Oct 2023 22:39:31 -0600
parents 88f425d261b3
children 3e2cb946d511
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;  /* set to flex */
	flex-direction: column;
	z-index: 20;
	position: absolute;
	top: 40px;
	border: 1px solid #DDDDDD;
	text-align: left;
	background-color: #ffffff;
	white-space: nowrap;
}

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;
}