Projekt

Obecné

Profil

Stáhnout (493 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
%lightBackground {
2
    background-color: white;
3
}
4

    
5
.layoutwrapper {
6
    display: grid;
7

    
8
    grid:
9
        [main-start] 'tags document annotations' [main-end]
10
        / 1fr 3fr 1fr;
11

    
12
    width:100%;
13
    height:100%;
14
    place-items: stretch;
15
    place-content: stretch;
16
    gap: 3px;
17
}
18

    
19

    
20
.tags {
21
    @extend %lightBackground;
22
    grid-area: tags;
23
}
24

    
25
.annotations {
26
    @extend %lightBackground;
27
    grid-area: annotations;
28
}
29

    
30
.document {
31
    @extend %lightBackground;
32
    grid-area: document;
33
}
(2-2/5)