-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathglobal.css
More file actions
94 lines (79 loc) · 1.3 KB
/
global.css
File metadata and controls
94 lines (79 loc) · 1.3 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
94
@import 'tailwindcss';
/* 项目特殊样式 */
@import './assets/styles/common.css';
@import './assets/styles/RelayIcon.css';
@import './assets/styles/github-markdown.css';
@config '../tailwind.config.js';
@theme {
--spacing: 1px;
--default-transition-duration: 0.3s;
@keyframes dot-pulse {
0%,
100% {
transform: scale(1);
background-color: #acbdff;
}
50% {
transform: scale(1.5); /* 4px * 1.5 = 6px */
background-color: #4040ff;
}
}
}
html,
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
color: #333;
height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: bold;
}
a {
color: #007bff;
text-decoration: none;
&:hover {
color: #0056b3;
}
}
ul,
ol {
list-style: none;
margin: 0;
padding: 0;
}
#root{
height: 100%;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* 为 IE、Edge 和 Firefox 提供支持 */
.no-scrollbar {
-ms-overflow-style: none; /* IE 和 Edge */
scrollbar-width: none; /* Firefox */
}
.delay-400ms {
animation-delay: 0.4s !important;
}
.delay-0ms {
animation-delay: 0s !important;
}
.delay-800ms {
animation-delay: 0.8s !important;
}
.lottie{
height: 80px !important;
}
code, kbd, samp, pre{
color:wheat !important;
}