+
+
diff --git a/src/views/Body/Top/style.scss b/src/views/Body/Top/style.scss
index f751503..dde1f6c 100644
--- a/src/views/Body/Top/style.scss
+++ b/src/views/Body/Top/style.scss
@@ -1,53 +1,42 @@
.box {
- width: 1000px;
- height: 200px;
+ width: 1415px;
+ height: 240px;
display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 30px;
+ justify-content: space-between;
+ // margin-top: 30px;
}
.left {
- width: 460px;
- height: 100%;
- overflow: hidden;
-}
-.meter {
- width: 2300px;
- display: flex;
+ width: 550px;
height: 100%;
- // justify-content: center;
- // align-items: center;
- // animation: move 5 infinite;
- // -webkit-animation-delay:5s;
}
.picture1 {
- width: 460px;
- height: 200px;
+ width: 550px;
+ height: 240px;
background-color: rgb(200, 233, 166);
}
.picture2 {
- width: 460px;
- height: 200px;
+ width: 550px;
+ height: 240px;
background-color: rgb(105, 133, 209);
}
.picture3 {
- width: 460px;
- height: 200px;
+ width: 550px;
+ height: 240px;
background-color: rgb(48, 137, 165);
}
.picture4 {
- width: 460px;
- height: 200px;
+ width: 550px;
+ height: 240px;
background-color: rgb(204, 98, 138);
}
.picture5 {
- width: 460px;
- height: 200px;
+ width: 550px;
+ height: 240px;
background-color: rgb(204, 94, 94);
}
.right {
- height: 200px;
- width: 540px;
+ height: 240px;
+ width: 855px;
display: flex;
flex-direction: column;
justify-content: space-between;
@@ -58,27 +47,15 @@
align-items: center;
}
.action {
- width: 170px;
- height: 95px;
+ width: 206px;
+ height: 115px;
margin-left: 10px;
background-color: black;
}
-.hidden{
- width: 170px;
- height: 95px;
- overflow: hidden;
-}
-.icon1 {
- width: 460px;
- height: 200px;
-}
.icon2 {
- width: 170px;
- height: 95px;
+ width: 206px;
+ height: 115px;
}
-// :hover.icon2{
-// opacity:0.5;
-// }
p {
position: absolute;
top: 20px;
diff --git a/src/views/Body/index.tsx b/src/views/Body/index.tsx
index 8b00a97..afac3db 100644
--- a/src/views/Body/index.tsx
+++ b/src/views/Body/index.tsx
@@ -1,12 +1,13 @@
import * as React from "react";
import * as style from "./style.scss";
-import DianShiJu from "./DianShiJu";
+import First from "./First";
import Top from "./Top";
+import Second from "./Second";
-export default function Body(){
+export default function Body() {
return
-
-
+
+
}
\ No newline at end of file
diff --git a/src/views/Body/style.scss b/src/views/Body/style.scss
index e780822..b415890 100644
--- a/src/views/Body/style.scss
+++ b/src/views/Body/style.scss
@@ -1,5 +1,5 @@
.a{
background-color:white;
- width:1000px;
+ width:1415px;
margin: 0 auto;
}
\ No newline at end of file
diff --git a/src/views/Header/Top/Left/BaiNian/index.tsx b/src/views/Header/Top/Left/BaiNian/index.tsx
index b646cd4..5dc56b0 100644
--- a/src/views/Header/Top/Left/BaiNian/index.tsx
+++ b/src/views/Header/Top/Left/BaiNian/index.tsx
@@ -6,9 +6,9 @@ export default function BaiNian() {
return (
)
diff --git a/src/views/Header/Top/Left/index.tsx b/src/views/Header/Top/Left/index.tsx
index c828c98..1e4377d 100644
--- a/src/views/Header/Top/Left/index.tsx
+++ b/src/views/Header/Top/Left/index.tsx
@@ -6,14 +6,14 @@ import BaiNian from "./BaiNian";
export default function Left(){
return
}
\ No newline at end of file
diff --git a/src/views/Header/Top/Right/OpenGitHub/index.tsx b/src/views/Header/Top/Right/OpenGitHub/index.tsx
new file mode 100644
index 0000000..dac4536
--- /dev/null
+++ b/src/views/Header/Top/Right/OpenGitHub/index.tsx
@@ -0,0 +1,10 @@
+import React from "react";
+import { Icon } from "antd";
+import * as style from "./style.scss";
+
+export default function OpenGitHub (){
+ return
+
+ Github
+
+}
\ No newline at end of file
diff --git a/src/views/Header/Top/Right/OpenGitHub/style.scss b/src/views/Header/Top/Right/OpenGitHub/style.scss
new file mode 100644
index 0000000..6df344d
--- /dev/null
+++ b/src/views/Header/Top/Right/OpenGitHub/style.scss
@@ -0,0 +1,19 @@
+.box{
+ width:100px;
+ height: 30px;
+ border: 1px solid rgb(144, 144, 144);
+ display: flex;
+ border-radius:5px;
+ justify-content: space-between;
+ align-items: center;
+ margin-left: 20px;
+ padding: 0 5px;
+}
+.place{
+ color:rgb(144, 144, 144);
+ font-size: 20px;
+}
+.icon{
+ color:rgb(144, 144, 144);
+ font-size: 20px;
+}
\ No newline at end of file
diff --git a/src/views/Header/Top/Right/index.tsx b/src/views/Header/Top/Right/index.tsx
index 2a0160a..61cae8c 100644
--- a/src/views/Header/Top/Right/index.tsx
+++ b/src/views/Header/Top/Right/index.tsx
@@ -1,32 +1,34 @@
import * as React from 'react';
import * as style from './style.scss';
import Upload from './Upload';
+import OpenGitHub from './OpenGitHub';
export default function Right() {
return (
);
}
diff --git a/src/views/Header/Top/Right/style.scss b/src/views/Header/Top/Right/style.scss
index 604cb8d..9f7e6fa 100644
--- a/src/views/Header/Top/Right/style.scss
+++ b/src/views/Header/Top/Right/style.scss
@@ -1,6 +1,6 @@
.a{
// background-color: crimson;
- width:450px;
+ width:550px;
display: flex;
align-items: center;
}
diff --git a/src/views/Up/Center/index.tsx b/src/views/Up/Center/index.tsx
index e820f72..afaf75c 100644
--- a/src/views/Up/Center/index.tsx
+++ b/src/views/Up/Center/index.tsx
@@ -3,28 +3,28 @@ import * as style from "./style.scss";
export default function Center(){
return
}
diff --git a/src/views/Up/Left/index.tsx b/src/views/Up/Left/index.tsx
index f01a0cd..5baf808 100644
--- a/src/views/Up/Left/index.tsx
+++ b/src/views/Up/Left/index.tsx
@@ -7,11 +7,11 @@ import nmg from "./upleft3.png";
export default function Left(){
return
}
\ No newline at end of file
diff --git a/src/views/Up/Right/index.tsx b/src/views/Up/Right/index.tsx
index 002def6..930660a 100644
--- a/src/views/Up/Right/index.tsx
+++ b/src/views/Up/Right/index.tsx
@@ -3,11 +3,11 @@ import * as style from "./style.scss"
export default function Right(){
return