Skip to content

Commit 57abe60

Browse files
committed
update new footer
1 parent e59ba1c commit 57abe60

7 files changed

Lines changed: 105 additions & 9 deletions

File tree

front-end/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function MyApp({ Component, pageProps }: AppProps) {
1414
<ContextProvider>
1515
<Component {...pageProps} />
1616
</ContextProvider>
17-
<link rel="stylesheet" href="https://web3camp.us/globals.css"/>
17+
<link rel="stylesheet" href="./globals.css"/>
1818
</>
1919
}
2020

front-end/pages/components/footerBox.tsx

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ import styled from "styled-components";
22
import {Container} from 'react-bootstrap';
33
const Footer = styled.div`
44
height: 80px;
5-
margin-top: 100px;
5+
margin-top: 60px;
6+
width: 100%;
7+
padding-top: 15px;
8+
background: #fff;
9+
font-size: 14px;
610
.midBox{
711
display: flex;
812
justify-content: space-between;
@@ -15,18 +19,28 @@ const Footer = styled.div`
1519
.lft{
1620
padding-left: 10px;
1721
}
22+
a{
23+
display: inline-block;
24+
margin-left: 20px;
25+
}
1826
`
1927
export default function footerBox(){
2028
return <Footer>
2129
<Container>
2230
<div className="midBox">
23-
<div className="lft">&copy; 2022 Web3camp.us</div>
31+
<a href="https://web3camp.us" target="_blank" rel="noreferrer">
32+
<div className="lft">&copy; 2022 Web3camp.us</div>
33+
</a>
34+
2435
<div>
25-
<a href="https://github.com/Web3-Camp/multisender" target="_blank" rel="noreferrer">
26-
<img src="https://web3camp.us/assets/images/GitHub-Mark.png" alt=""/>
36+
<a href="https://github.com/Web3Camp-Labs/multisender" target="_blank" rel="noreferrer">
37+
<img src="./github.png" alt=""/>
38+
</a>
39+
<a href="https://twitter.com/Web3Camp" target="_blank" rel="noreferrer">
40+
<img src="./Twitter.png" alt=""/>
2741
</a>
2842
</div>
2943
</div>
3044
</Container>
31-
</Footer>
45+
</Footer>
3246
}

front-end/pages/components/step2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ export default function Step2(props:Iprops) {
469469

470470
const downLoadExcel = (data:string[]) => {
471471
if (importRecord == null || !data.length) return;
472-
let amountStr = `Address,amount\n`;
472+
let amountStr = `Address,Amount\n`;
473473
let addressStr = "";
474474
importRecord.map((item)=>{
475475
const { address, amount} = item;

front-end/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ const NavBox = styled.div`
4545
height: 80px;
4646
}
4747
li{
48-
background: #fff;
49-
padding: 0 40px;
48+
background: #FAFBFC;
49+
padding: 0 20px;
5050
.circle{
5151
width: 80px;
5252
height: 80px;

front-end/public/Twitter.png

1.92 KB
Loading

front-end/public/github.png

6.94 KB
Loading

front-end/public/globals.css

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
@font-face {
2+
font-family: "AdobeGurmukhi-Bold";
3+
src: url("https://web3camp.us/AdobeGurmukhi-Bold.otf");
4+
}
5+
@font-face {
6+
font-family: "Helvetica";
7+
src: url('https://web3camp.us/Helvetica.ttc');
8+
}
9+
10+
html,
11+
body {
12+
padding: 0;
13+
margin: 0;
14+
background: #FAFBFC;
15+
color: #666666;
16+
}
17+
* {
18+
padding: 0;
19+
margin: 0;
20+
font-family: "Helvetica";
21+
}
22+
23+
a{
24+
text-decoration: none;
25+
color: #666666;
26+
}
27+
a:hover{
28+
color: purple;
29+
}
30+
31+
ul,li{
32+
list-style: none;
33+
padding: 0;
34+
margin: 0;
35+
}
36+
.btn-flat {
37+
background-color: #2D1D0A;
38+
color: white;
39+
/*width: 152px;*/
40+
/*height: 46px;*/
41+
font-family: "Helvetica";
42+
}
43+
.btn-flat:focus{
44+
outline: none;
45+
}
46+
.btn-flat:hover{
47+
background: purple;
48+
color: white;
49+
}
50+
.spinner-primary{
51+
color: purple;
52+
}
53+
.backgroun-gray{
54+
background: #f8f8f8;
55+
}
56+
.form-check-input:checked {
57+
background-color: purple;
58+
border-color: purple;
59+
}
60+
.form-check-input:focus{
61+
outline: none;
62+
border-color: #ccc;
63+
}
64+
.header{
65+
/*box-shadow: 0 0 5px #ccc;*/
66+
padding:23px 0;
67+
background: #fff;
68+
}
69+
.header img{
70+
height: 45px;
71+
}
72+
.headerTxt{
73+
font-family: "Helvetica";
74+
font-weight: bolder;
75+
font-size: 32px;
76+
/* text-transform: uppercase; */
77+
}
78+
.headetRht{
79+
text-align: right;
80+
font-size: 12px;
81+
padding-top: 20px;
82+
}

0 commit comments

Comments
 (0)