Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 32ed1aac authored 3 years ago by agan's avatar agan
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

样式微调

parent 1434c1c4
Show whitespace changes
Inline Side-by-side
Showing with 17 additions and 2 deletions
  • css/new/index.css
css/new/index.css
View file @ 32ed1aac
......@@ -60,7 +60,7 @@ body {
position: absolute;
top: 5.4rem;
left: 50%;
transform: translateX( -50%);
transform: translateX( -50%) scale(1.2);
z-index: 10;
}
......@@ -128,6 +128,7 @@ body {
position: absolute;
top: 2rem;
left: -0.4rem;
animation: mBreath 8s linear infinite;
}
.bubble2 {
......@@ -138,6 +139,7 @@ body {
position: absolute;
top: 1.6rem;
left: 7rem;
animation: mBreath 6s linear infinite;
}
.bubble3 {
......@@ -148,6 +150,7 @@ body {
position: absolute;
top: 8rem;
right: -0.4rem;
animation: mBreath 10s linear infinite;
}
.bubble4 {
......@@ -157,9 +160,21 @@ body {
background-size: contain;
position: absolute;
top: 14rem;
left: -0.2rem;
left: -0.3rem;
animation: mBreath 7s linear infinite;
}
@keyframes mBreath {
0%{
transform: scale(1);
}
50%{
transform: scale(0.8);
}
100%{
transform: scale(1);
}
}
.recommendBox {
/* width: 10rem;
......
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment