137 lines
2.6 KiB
CSS
137 lines
2.6 KiB
CSS
.home {
|
|
height: 100vh;
|
|
width: 100%;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-image: url("../../public/images/background-img.jpg");
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding-bottom: 3rem;
|
|
height: 100%;
|
|
gap: 25px;
|
|
}
|
|
|
|
.greeting {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
line-height: 34.4px;
|
|
}
|
|
|
|
.greeting span {
|
|
background: linear-gradient(45deg, #42BB47, #33A137, #42BB47);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.balance {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.balanceAmount {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
}
|
|
|
|
.totalBalance {
|
|
font-size: 42px;
|
|
font-weight: 600;
|
|
line-height: 51px;
|
|
background: linear-gradient(45deg, #42BB47, #33A137, #42BB47);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.miningButton {
|
|
margin-bottom: 75px;
|
|
width: 187px;
|
|
height: 60px;
|
|
padding: 20px 30px;
|
|
background: #42BB47;
|
|
color: white;
|
|
font-weight: 600;
|
|
line-height: 19.6px;
|
|
box-shadow: 0 0 42px 0 #42BB47B2;
|
|
border-radius: 30px;
|
|
border: 0.5px solid;
|
|
cursor: pointer;
|
|
border-image-source: linear-gradient(180deg, #42BB47 4.41%, #308A34 61.59%, #42BB47 101.32%);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.farmingButton {
|
|
margin-bottom: 75px;
|
|
width: 300px;
|
|
height: 60px;
|
|
padding: 20px 30px;
|
|
background: black;
|
|
box-shadow: 0px 0px 42px 0px #42BB4780;
|
|
text-decoration: none;
|
|
cursor: not-allowed;
|
|
border-radius: 30px;
|
|
border: 1px solid #42BB4780;
|
|
color: #42BB4780;
|
|
font-weight: 600;
|
|
line-height: 19.6px;
|
|
}
|
|
|
|
.claimReward {
|
|
box-shadow: 0px 0px 42px 0px #42BB4780;
|
|
width: 257px;
|
|
height: 60px;
|
|
padding: 20px 30px;
|
|
cursor: pointer;
|
|
margin-bottom: 75px;
|
|
border-radius: 30px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
line-height: 19.6px;
|
|
background: #10101080;
|
|
border: 1px solid #42BB47;
|
|
color: #42BB4780;
|
|
}
|
|
|
|
.claimAmount {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.claimAmount span {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #42BB47;
|
|
}
|
|
|
|
.reward {
|
|
display: flex;
|
|
align-content: center;
|
|
gap: 10px;
|
|
color: #42BB47;
|
|
}
|
|
|
|
.reward span {
|
|
color: #42BB47;
|
|
}
|
|
|
|
.disabledButton {
|
|
background: #10101080;
|
|
color: #42BB47;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.miningButton,
|
|
.farmingButton,
|
|
.claimReward {
|
|
transition: all 0.2s ease-in-out;
|
|
} |