blob: d0a0828dbf5d92d1785b01fb53e6d0c55dd9ae4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/* menu */
#lcolonq-menu {
overflow-y: scroll;
height: auto;
display: flex;
flex-direction: column;
align-items: center;
}
#lcolonq-menu-grid {
top: 0px;
display: grid;
height: 100%;
grid-template-rows: max-content 4fr;
margin: 0 50px;
}
#lcolonq-menu-header {
grid-row: 1;
grid-column: 2;
text-align: center;
padding-bottom: 1rem;
}
#lcolonq-menu-header h1 {
margin-bottom: 0rem;
}
#lcolonq-menu-body {
grid-row: 2;
grid-column: 2;
}
#lcolonq-menu-body-grid {
display: grid;
grid-auto-flow: dense;
grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
grid-auto-rows: minmax(10rem, auto);
gap: 1rem;
margin-bottom: 1rem;
}
#lcolonq-menu-friendzone {
grid-column: 1/-1;
display: grid;
grid-auto-flow: dense;
grid-template-columns: subgrid;
grid-template-rows: auto; /* first row is just the title */
grid-auto-rows: minmax(10rem, auto);
gap: 1rem;
outline: solid;
outline-offset: 2rem;
margin-top: 2rem;
margin-bottom: 2rem;
}
#lcolonq-menu-friendzone-title {
grid-column: 1/-1;
text-align: center;
margin-top: 0rem;
}
.lcolonq-menu-box {
border: solid;
border-color: black;
padding-left: 1rem;
padding-right: 1rem;
padding-bottom: 1rem;
display: flex;
flex-direction: column;
user-select: none;
}
.lcolonq-menu-box:hover {
background-color: #eeeeee;
}
.lcolonq-menu-box h3 {
text-align: center;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.lcolonq-menu-box-long {
grid-row-end: span 2;
}
.lcolonq-menu-box textarea {
resize: none;
margin-top: 1rem;
flex: 1;
}
|