app-sidebar.css
1.1 KB
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
:host {
height: 100%;
box-sizing: border-box;
z-index: 2;
background: white;
border-right: 1px solid #e5e5e5;
@apply(--layout);
@apply(--layout-vertical);
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
::content paper-toolbar {
--paper-toolbar-background: white;
}
::content .section {
margin-bottom: 20px;
opacity: 0;
transform: translate(0, 100px);
transition: var(--material-curve-320);
}
::content .section:first-child { transition-delay: 100ms; }
::content .section:nth-child(2) { transition-delay: 200ms; }
::content .section:nth-child(3) { transition-delay: 300ms; }
::content .section:nth-child(4) { transition-delay: 400ms; }
::content .active .section {
transform: translate(0, 0);
opacity: 1;
}
::content .section h5 {
@apply(--paper-font-body2);
border-top: 1px solid;
border-top-color: var(--divider-color);
margin: 24px 0 0 0;
padding: 16px 24px 12px 24px;
}
::content .section p {
@apply(--paper-font-body1);
color: var(--secondary-text-color);
padding: 0 24px;
margin: 0;
}
::content .content {
@apply(--layout-vertical);
}