-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
28 lines (25 loc) · 1.12 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Doto:[email protected]&family=Flow+Circular&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Noto+Sans:wdth,[email protected],100..900&family=Outfit:wght@600&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand:[email protected]&family=Rubik:ital,wght@0,300..900;1,300..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
font-family: "Plus Jakarta Sans", serif;
box-sizing: border-box;
}
[data-navigate] [data-view], [data-navigate] [data-info], [data-tab-content] {
transition: .35s;
}
[data-navigate] [data-view="1"] {
color: rgb(37 99 235);
}
.animationsideout {
animation: animationSideout .3s ease-out;
}
.animationsideout-out {
animation: animationSideoutOut .3s ease-out;
}
@keyframes animationSideout {
from { margin-bottom: -141px; opacity: 0; }
to { margin-bottom: 0px; opacity: 1; }
}
@keyframes animationSideoutOut {
from { margin-bottom: 0px; opacity: 1; }
to { margin-bottom: -141px; opacity: 0; }
}