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.
155 lines
2.2 KiB
155 lines
2.2 KiB
@import '../../variables.scss';
|
|
|
|
.content {
|
|
padding: 0 40px;
|
|
font-family: Roboto;
|
|
color: $white;
|
|
margin: 0 auto;
|
|
width: 500px;
|
|
|
|
.header {
|
|
padding: 20px;
|
|
|
|
h1 {
|
|
margin-bottom: 15px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
line-height: 1.3;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
padding-bottom: 20px;
|
|
border-bottom: 1px solid $spaceborder;
|
|
|
|
h1 {
|
|
font-size: 22px;
|
|
font-weight: 100;
|
|
margin-top: 10px;
|
|
letter-spacing: 1.5px;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
margin: 20px 0;
|
|
line-height: 32px;
|
|
|
|
h2 {
|
|
font-size: 14px;
|
|
background: $spaceblue;
|
|
padding: 5px;
|
|
border-radius: 0px;
|
|
display: inline;
|
|
}
|
|
}
|
|
|
|
.input {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
input {
|
|
font-size: 20px;
|
|
max-width: 110px;
|
|
}
|
|
}
|
|
|
|
.input input {
|
|
background: transparent;
|
|
outline: none;
|
|
border:1px solid #404040;
|
|
border-radius: 4px;
|
|
padding: 15px;
|
|
color: $gold;
|
|
-webkit-text-fill-color: $white;
|
|
width: 100%;
|
|
font-weight: 200;
|
|
}
|
|
|
|
.input input::-webkit-input-placeholder, ::-webkit-input-placeholder {
|
|
text-shadow: none;
|
|
-webkit-text-fill-color: initial;
|
|
}
|
|
|
|
.currency {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding-left: 10px;
|
|
|
|
.currentCurrency {
|
|
cursor: pointer;
|
|
transition: 0.25s all;
|
|
|
|
&:hover {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
span {
|
|
font-size: 14px;
|
|
|
|
&:nth-child(1) {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
ul {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
top: 30px;
|
|
|
|
&.active {
|
|
visibility: visible;
|
|
}
|
|
|
|
li {
|
|
padding: 8px 15px;
|
|
background: #191919;
|
|
cursor: pointer;
|
|
transition: 0.25s hover;
|
|
border-bottom: 1px solid #0f0f0f;
|
|
|
|
&:hover {
|
|
background: #0f0f0f;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.usdAmount {
|
|
margin-top: 20px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.submit {
|
|
margin-top: 50px;
|
|
text-align: center;
|
|
|
|
.button {
|
|
width: 235px;
|
|
margin: 0 auto;
|
|
padding: 20px 10px;
|
|
background: #31343f;
|
|
opacity: 0.5;
|
|
cursor: pointer;
|
|
transition: 0.25s all;
|
|
|
|
&.active {
|
|
background: $gold;
|
|
opacity: 1.0;
|
|
|
|
&:hover {
|
|
background: darken($gold, 5%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|