-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmodule.app.css
More file actions
81 lines (69 loc) · 1.77 KB
/
Copy pathmodule.app.css
File metadata and controls
81 lines (69 loc) · 1.77 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
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
.app {
color: var(--color__text);
}
.app--light {
color: var(--color__white);
}
.app__background {
display: flex;
flex-direction: column;
height: 100%;
transition: background-color 0.8s ease;
border-radius: var(--border__radius--20px);
overflow: auto;
scrollbar-color: rgb(0, 0, 0);
scrollbar-width: thin;
}
.app__content {
overflow-x: visible;
position: relative;
z-index: var(--level-1);
opacity: 0;
padding: var(--spacing--32px) var(--spacing--40px) 0;
animation: fadeIn 0.8s 0.1s ease forwards;
flex: 1;
}
.app__background--withNav {
& .app__content {
flex: 0;
padding: var(--spacing--32px) var(--spacing--40px) var(--spacing--80px);
}
}
.app__background--primary {
background-color: var(--color__background--primary);
}
.app__background--secondary {
background-color: var(--color__background--secondary);
}
.app__background--tertiary {
background-color: var(--color__background--tertiary);
}
.app__background--quaternary {
background-color: var(--color__background--quaternary);
}
.app__deco {
position: absolute;
top: 0;
right: 0;
z-index: var(--level-0);
pointer-events: none;
& path {
opacity: 0.08;
transition: all 2s ease;
fill: #ffffff;
}
}
.app__deco--default {
& path {
d: path(
'M294.922 111.746C330.57 175.894 310.047 248.019 247.289 282.894C184.532 317.77 103.141 301.894 67.6569 238.042C39.2199 186.871 54.2894 86.126 109.289 55.5614C164.289 24.9968 266.485 60.5749 294.922 111.746Z'
);
}
}
.app__deco--variant1 {
& path {
d: path(
'M367.393537,0.000001l66.180683,391.154837l-367.393537,62.160436l-66.180683,-391.154837l367.393537,-62.160436Z'
);
}
}