-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
46 lines (40 loc) · 814 Bytes
/
styles.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
body > main {
padding-top: 0;
}
nav {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.content-wrapper {
max-height: calc(100vh - 4rem);
overflow-y: auto;
}
canvas {
max-width: 100%;
}
.loading-indicator {
display: none;
text-align: center;
padding: 20px;
}
.loading-indicator::after {
content: '';
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
border: 4px solid #ccc;
border-top-color: #333;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}