parent
25ae515567
commit
59b7073ec9
@ -0,0 +1,9 @@ |
||||
.modal-become-candidate { |
||||
max-width: 100%; |
||||
width: 280px; |
||||
|
||||
@include media-breakpoint-down(sm) { |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
} |
@ -0,0 +1,25 @@ |
||||
.modal-bottom-disclaimer { |
||||
background-color: $modal-gray-background; |
||||
border-bottom-left-radius: $modal-border-radius; |
||||
border-bottom-right-radius: $modal-border-radius; |
||||
color: #a3a9b5; |
||||
display: flex; |
||||
font-size: 12px; |
||||
font-weight: normal; |
||||
line-height: 1.67; |
||||
padding: #{ $modal-vertical-padding } #{ $modal-horizontal-padding }; |
||||
text-align: left; |
||||
|
||||
&.b-b-r-0 { |
||||
border-bottom-right-radius: 0; |
||||
} |
||||
|
||||
.modal-bottom-disclaimer-graphic { |
||||
flex-shrink: 0; |
||||
padding-right: 15px; |
||||
} |
||||
|
||||
.modal-bottom-disclaimer-text { |
||||
flex-grow: 1; |
||||
} |
||||
} |
@ -0,0 +1,13 @@ |
||||
.modal-stake { |
||||
max-width: 100%; |
||||
width: 460px; |
||||
|
||||
@include media-breakpoint-down(sm) { |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
} |
||||
|
||||
.modal-stake-two-cols { |
||||
display: flex; |
||||
} |
@ -0,0 +1,64 @@ |
||||
$modal-status-graph-error: #ff0d51 !default; |
||||
$modal-status-graph-warning: #ff8502 !default; |
||||
$modal-status-graph-success: $primary!default; |
||||
|
||||
.modal-status { |
||||
max-width: 100%; |
||||
width: 300px; |
||||
|
||||
@include media-breakpoint-down(sm) { |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
} |
||||
|
||||
.modal-status-graph { |
||||
align-items: center; |
||||
border-top-left-radius: $modal-border-radius; |
||||
border-top-right-radius: $modal-border-radius; |
||||
display: flex; |
||||
height: 135px; |
||||
justify-content: center; |
||||
|
||||
&-error { |
||||
background-color: $modal-status-graph-error; |
||||
} |
||||
|
||||
&-warning { |
||||
background-color: $modal-status-graph-warning; |
||||
} |
||||
|
||||
&-success { |
||||
background-color: $modal-status-graph-success; |
||||
} |
||||
|
||||
svg { |
||||
margin-top: 15px; |
||||
} |
||||
} |
||||
|
||||
.modal-status-body { |
||||
align-items: center; |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: center; |
||||
padding: #{ $modal-vertical-padding } #{ $modal-horizontal-padding }; |
||||
} |
||||
|
||||
.modal-status-title { |
||||
color: #333; |
||||
font-size: 18px; |
||||
font-weight: normal; |
||||
line-height: 1.2; |
||||
margin: 0 0 15px; |
||||
text-align: center; |
||||
} |
||||
|
||||
.modal-status-text { |
||||
color: #a3a9b5; |
||||
font-size: 12px; |
||||
font-weight: normal; |
||||
line-height: 1.5; |
||||
margin: 0 0 25px; |
||||
text-align: center; |
||||
} |
Loading…
Reference in new issue