-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathListing_11.20.css
More file actions
55 lines (55 loc) · 835 Bytes
/
Listing_11.20.css
File metadata and controls
55 lines (55 loc) · 835 Bytes
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
.
.
.
.grid-header {
background-color: #ccc;
grid-area: header;
padding: 1em;
text-align: center;
}
.grid-menu {
background-color: #c0c0c0;
grid-area: menu;
padding: 1em;
}
.grid-menu ul,
.grid-panel ul,
.grid-footer ul {
list-style: none;
margin: 0;
padding: 0;
}
.grid-content {
grid-area: content;
padding: 3em 3em 4em;
}
.grid-panel {
border-left: 1px solid rgba(0,0,0,0.1);
grid-area: panel;
padding: 4em 2em 4em 3em;
}
.grid-footer {
background-color: #ddd;
grid-area: footer;
padding: 4em 1em;
text-align: center;
}
.grid-footer li {
display: inline-block;
}
.
.
.
.grid-banner {
align-self: start;
background-color: rgba(168,214,247,0.9);
grid-column: content-start / panel-end;
grid-row-start: content-start;
padding: 1em;
position: sticky;
top: 0;
z-index: 10;
}
.
.
.