forked from kedowen/Kedomind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (83 loc) · 1.53 KB
/
style.css
File metadata and controls
93 lines (83 loc) · 1.53 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
82
83
84
85
86
87
88
89
90
91
92
93
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
font-size: 14px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#app {
overflow: hidden;
}
/* Scrollbar Styles */
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.3);
}
/* Loading animation styles */
.app-loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--main-bg);
transition: opacity 0.5s, visibility 0.5s;
}
/* Logo container with glow effect */
.logo-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.logo-container-img {
position: relative;
width: 100px;
height: 100px;
}
.app-loading-logo {
position: absolute;
width: 100%;
height: 100%;
animation: logo-spin 1.5s infinite linear;
}
.app-loading-brain {
position: absolute;
width: 25px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.app-loading.loaded {
opacity: 0;
visibility: hidden;
}
@keyframes logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}