This commit is contained in:
2025-01-03 18:02:01 +08:00
commit 44d914b1a1
71 changed files with 825 additions and 0 deletions

6
css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

40
css/header.css Normal file
View File

@@ -0,0 +1,40 @@
@keyframes NavItem {
0% {
width: 0;
}
100% {
width: 80%;
}
}
.navbar-nav .cur a {
color: #1362AD;
}
.navbar-nav .cur a::after {
display: block !important;
}
.navbar-nav .nav-item a {
transition: 500ms;
}
.navbar-nav .nav-item {
position: relative;
}
.navbar-nav .nav-item:hover a::after {
display: block;
}
.navbar-nav .nav-item a::after {
content: '';
width: 0;
height: 2px;
background-color: #1362AD;
position: absolute;
bottom: -31px;
display: none;
animation: NavItem 500ms forwards;
}

4
css/index.css Normal file
View File

@@ -0,0 +1,4 @@
* {
margin: 0;
padding: 0;
}

13
css/swiper-bundle.min.css vendored Normal file

File diff suppressed because one or more lines are too long