comparison 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
comparison
equal deleted inserted replaced
8:9534dd5eda89 9:88f425d261b3
11 } 11 }
12 a:hover { 12 a:hover {
13 text-decoration: underline; 13 text-decoration: underline;
14 } 14 }
15 15
16 [onclick] {
17 cursor: pointer;
18 }
19
20 [pulldown] {
21 position: relative;
22 }
23 [pulldown_menu] {
24 display: none;
25 z-index: 20;
26 position: absolute;
27 top: 40px;
28 border: 1px solid #DDDDDD;
29 text-align: left;
30 background-color: #ffffff;
31 }
32
16 div[header] { 33 div[header] {
17 display: flex; 34 display: flex;
18 justify-content: space-between; 35 justify-content: space-between;
19 align-items: center; 36 align-items: center;
20 } 37 }
23 width: 50px; 40 width: 50px;
24 height: 50px; 41 height: 50px;
25 object-fit: cover; 42 object-fit: cover;
26 border-radius: 50%; 43 border-radius: 50%;
27 } 44 }
45
46 div[header] [pulldown_menu] {
47 right: 0;
48 margin-top: 20px;
49 }