176 lines
2.9 KiB
SCSS
176 lines
2.9 KiB
SCSS
|
|
// Fonts
|
|
@import url('https://fonts.googleapis.com/css?family=Nunito');
|
|
|
|
// Variables
|
|
@import 'variables';
|
|
|
|
// Bulma
|
|
@import '~bulma/bulma';
|
|
|
|
* {
|
|
box-sizing: border-box !important;
|
|
font-family: 'Open Sans Condensed', sans-serif;
|
|
color:#b9b9b9;
|
|
}
|
|
html, body{
|
|
height:100%;
|
|
}
|
|
.section {
|
|
padding: 1.5rem 1.5rem;
|
|
}
|
|
html.has-navbar-fixed-top, body.has-navbar-fixed-top {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
.push-right{
|
|
margin-right: 1em;
|
|
}
|
|
.text-primary {
|
|
color: #f4ab25!important;
|
|
}
|
|
.text-secondary {
|
|
color: #568ebd!important;
|
|
}
|
|
.text-success {
|
|
color:#7ba428;
|
|
}
|
|
.text-error {
|
|
color:#d92626;
|
|
}
|
|
|
|
.icon-circle {
|
|
border-radius: 50%;
|
|
background-color: #1f2732;
|
|
color: #b9b9b9;
|
|
top: 0;
|
|
left: 0;
|
|
width: 46px;
|
|
height: 46px;
|
|
z-index: 9;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.button.is-dark {
|
|
background-color: #1f2731;
|
|
color:#dcdcdc;
|
|
}
|
|
.button {
|
|
font-weight:700;
|
|
color:#dcdcdc;
|
|
}
|
|
|
|
.flex-middle {
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-space {
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
.flex-row {
|
|
-ms-flex-direction: row;
|
|
flex-direction: row;
|
|
}
|
|
.flex-column, .flex-row {
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
}
|
|
.filters-bar{
|
|
padding-bottom:0px;
|
|
background-image: linear-gradient(180deg, #0d1116b3 0, #19202900 60%);
|
|
margin-left:-20px;
|
|
margin-right:-20px;
|
|
}
|
|
.filters-title{
|
|
font-weight: 700;
|
|
padding-right: 20px;
|
|
float: left;
|
|
line-height: 36px;
|
|
padding-left: 20px;
|
|
}
|
|
.trade-info-small{
|
|
padding-left: 20px;
|
|
padding-top: 5px;
|
|
color: #bfbfbf;
|
|
font-weight: 200;
|
|
float: left;
|
|
font-size: 0.7rem;
|
|
}
|
|
#app{
|
|
min-height: 100%;
|
|
background-color: #192029;
|
|
background-image: linear-gradient(180deg,#0d1116 0,#192029 60%);
|
|
}
|
|
.navbar{
|
|
background-color: #1f2733;
|
|
}
|
|
.navbar-item, .navbar-link{
|
|
color:#cacaca;
|
|
}
|
|
|
|
.navbar-brand{
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
}
|
|
.navbar-item img {
|
|
max-height: 2.75rem;
|
|
padding-right: 0.5rem;
|
|
}
|
|
|
|
.coin-card{
|
|
background-color: #1f2733;
|
|
border-radius: 4px;
|
|
display:flex;
|
|
font-weight: 600;
|
|
padding: 1.25rem 0;
|
|
position: relative;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
|
|
}
|
|
|
|
.tokenicon-wrap {
|
|
display: block;
|
|
position: relative;
|
|
width: 56px;
|
|
min-height: 46px;
|
|
padding-left:20px;
|
|
}
|
|
.tokenicon-wrap .tokenicon-image {
|
|
display: block;
|
|
position: relative;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
width: 46px;
|
|
height: auto;
|
|
}
|
|
|
|
.tv-top-container, .tv-top-column{
|
|
transition:all 1000ms ease;
|
|
}
|
|
#vue-trading-view{
|
|
height:100%;
|
|
}
|
|
.tv-top-container.colapse {
|
|
max-height:0px;
|
|
overflow:hidden;
|
|
// background-color:transparent;
|
|
padding:0px;
|
|
}
|
|
|
|
|
|
.expand {
|
|
height:350px;
|
|
}
|
|
.tradingview-widget-container{
|
|
transition:max-height 500ms ease;
|
|
}
|
|
|
|
#tradingview_fcc41 {
|
|
// transition:all 500ms ease;
|
|
height:100%;
|
|
} |