2017-10-05 19:22:41 +00:00
|
|
|
@import 'common/sass/variables';
|
2017-07-15 04:16:36 +00:00
|
|
|
|
|
|
|
// footer
|
|
|
|
.Footer {
|
|
|
|
background-color: $ether-navy;
|
|
|
|
color: white;
|
|
|
|
padding-top: $space-xs;
|
|
|
|
padding-bottom: $space-sm;
|
v3 Style Import (#151)
* Convert bootstrap to sass instead of checked in and less
* Darken body, adjust header.
* First pass at tab styles, each tab will need a lot of individual love tho.
* Update footer to main site content, improve responsiveness.
* Missing key added.
* Fix dropdowns.
* Convert GenerateWallet HTML over, still needs styling.
* Send form.
* Current rates styled.
* CurrencySwap form styles.
* SwapInfoHeader styled.
* Finish up swap restyling, minor usability improvements for mobile.
* Fix up notifications / alert customizations
* Import v3 variables.
* Fix notification spacing.
* Align input height base with buttons.
* Revert height base, add additional bootstrap overrides.
* Grid overrides.
* Move overrides to their own folder. Adjust naming.
* Fix inconsistencies.
* Style generate wallet pt 1.
* Style generate wallet pt 2
* Style generate wallet pt 3
* Fix swap
* Added some missing overries, fixed the fallout.
* Remove header text, indicate alpha version.
* Fix radio / checkbox weights.
* Bind => arrow
* Convert simpledropdown to proper form select, instead of weirdly implemented nonfuncitoning dropdown.
* Fix token balances buttons, footr icons.
2017-09-05 19:52:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
2017-07-15 04:16:36 +00:00
|
|
|
|
v3 Style Import (#151)
* Convert bootstrap to sass instead of checked in and less
* Darken body, adjust header.
* First pass at tab styles, each tab will need a lot of individual love tho.
* Update footer to main site content, improve responsiveness.
* Missing key added.
* Fix dropdowns.
* Convert GenerateWallet HTML over, still needs styling.
* Send form.
* Current rates styled.
* CurrencySwap form styles.
* SwapInfoHeader styled.
* Finish up swap restyling, minor usability improvements for mobile.
* Fix up notifications / alert customizations
* Import v3 variables.
* Fix notification spacing.
* Align input height base with buttons.
* Revert height base, add additional bootstrap overrides.
* Grid overrides.
* Move overrides to their own folder. Adjust naming.
* Fix inconsistencies.
* Style generate wallet pt 1.
* Style generate wallet pt 2
* Style generate wallet pt 3
* Fix swap
* Added some missing overries, fixed the fallout.
* Remove header text, indicate alpha version.
* Fix radio / checkbox weights.
* Bind => arrow
* Convert simpledropdown to proper form select, instead of weirdly implemented nonfuncitoning dropdown.
* Fix token balances buttons, footr icons.
2017-09-05 19:52:01 +00:00
|
|
|
@media (min-width: $screen-sm-min) {
|
|
|
|
flex-direction: row;
|
|
|
|
text-align: left;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-column {
|
|
|
|
padding: 1rem 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-about {
|
|
|
|
max-width: 22rem;
|
|
|
|
|
|
|
|
&-logo {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
max-width: 20rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-info {
|
|
|
|
max-width: 34rem;
|
2017-07-15 04:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-links {
|
v3 Style Import (#151)
* Convert bootstrap to sass instead of checked in and less
* Darken body, adjust header.
* First pass at tab styles, each tab will need a lot of individual love tho.
* Update footer to main site content, improve responsiveness.
* Missing key added.
* Fix dropdowns.
* Convert GenerateWallet HTML over, still needs styling.
* Send form.
* Current rates styled.
* CurrencySwap form styles.
* SwapInfoHeader styled.
* Finish up swap restyling, minor usability improvements for mobile.
* Fix up notifications / alert customizations
* Import v3 variables.
* Fix notification spacing.
* Align input height base with buttons.
* Revert height base, add additional bootstrap overrides.
* Grid overrides.
* Move overrides to their own folder. Adjust naming.
* Fix inconsistencies.
* Style generate wallet pt 1.
* Style generate wallet pt 2
* Style generate wallet pt 3
* Fix swap
* Added some missing overries, fixed the fallout.
* Remove header text, indicate alpha version.
* Fix radio / checkbox weights.
* Bind => arrow
* Convert simpledropdown to proper form select, instead of weirdly implemented nonfuncitoning dropdown.
* Fix token balances buttons, footr icons.
2017-09-05 19:52:01 +00:00
|
|
|
max-width: 28rem;
|
2017-07-15 04:16:36 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 19:22:41 +00:00
|
|
|
&-modal-button {
|
|
|
|
color: #4ac8ed;
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
border: none;
|
|
|
|
text-align: left;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: 300;
|
|
|
|
transition: 500ms all ease-in-out;
|
|
|
|
&:hover {
|
|
|
|
color: #0e97c0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-15 04:16:36 +00:00
|
|
|
p {
|
|
|
|
margin: $space-xs 0 $space-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #4ac8ed;
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: darken(#4ac8ed, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: $font-size-bump;
|
|
|
|
margin: $font-size-small 0 0;
|
|
|
|
|
|
|
|
i {
|
2017-10-05 19:22:41 +00:00
|
|
|
margin-right: 0.25em;
|
v3 Style Import (#151)
* Convert bootstrap to sass instead of checked in and less
* Darken body, adjust header.
* First pass at tab styles, each tab will need a lot of individual love tho.
* Update footer to main site content, improve responsiveness.
* Missing key added.
* Fix dropdowns.
* Convert GenerateWallet HTML over, still needs styling.
* Send form.
* Current rates styled.
* CurrencySwap form styles.
* SwapInfoHeader styled.
* Finish up swap restyling, minor usability improvements for mobile.
* Fix up notifications / alert customizations
* Import v3 variables.
* Fix notification spacing.
* Align input height base with buttons.
* Revert height base, add additional bootstrap overrides.
* Grid overrides.
* Move overrides to their own folder. Adjust naming.
* Fix inconsistencies.
* Style generate wallet pt 1.
* Style generate wallet pt 2
* Style generate wallet pt 3
* Fix swap
* Added some missing overries, fixed the fallout.
* Remove header text, indicate alpha version.
* Fix radio / checkbox weights.
* Bind => arrow
* Convert simpledropdown to proper form select, instead of weirdly implemented nonfuncitoning dropdown.
* Fix token balances buttons, footr icons.
2017-09-05 19:52:01 +00:00
|
|
|
|
|
|
|
@media (min-width: $screen-sm-min) {
|
|
|
|
margin-left: -1.5em;
|
|
|
|
}
|
2017-07-15 04:16:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: $space-sm;
|
|
|
|
margin: 0 0 $space-xs 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li,
|
|
|
|
p {
|
|
|
|
font-size: $font-size-small;
|
|
|
|
margin: $space-sm 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $grid-float-breakpoint) {
|
|
|
|
.row {
|
2017-10-05 19:22:41 +00:00
|
|
|
margin-left: -0.5rem;
|
|
|
|
margin-right: -0.5rem;
|
2017-07-15 04:16:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-05 19:22:41 +00:00
|
|
|
|
|
|
|
.Modal {
|
|
|
|
color: #000;
|
|
|
|
}
|