You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
@import '../../variables.scss';
|
|
|
|
|
|
|
|
.container {
|
|
|
|
position: relative;
|
|
|
|
height: 100vh;
|
|
|
|
background: #2a2d38;
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titleBar {
|
|
|
|
height: 20px;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-webkit-app-region: drag;
|
|
|
|
background: #1c1e26;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
color: $white;
|
|
|
|
text-align: center;
|
|
|
|
background: #1c1e26;
|
|
|
|
|
|
|
|
header {
|
|
|
|
text-align: left;
|
|
|
|
padding: 20px 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
margin: 30px;
|
|
|
|
background: #1c1e26;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.address {
|
|
|
|
background: #1c1e26;
|
|
|
|
|
|
|
|
.textAddress {
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 0 5px;
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
font-size: 14px;
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.25s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.25;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.progressContainer {
|
|
|
|
color: $white;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 10%;
|
|
|
|
padding: 40px;
|
|
|
|
background: #2a2d38;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progressBar {
|
|
|
|
width: 75%;
|
|
|
|
max-width: 700px;
|
|
|
|
margin: 0 auto;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: $spaceborder;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress {
|
|
|
|
background: $gold;
|
|
|
|
background: #dea326;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: all 0.25s;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
color: $gold;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|