style.css
144 lines
| 2.7 KiB
| text/css
|
LassoCssLexer
|
r35 | @font-face { | |
font-family: 'Dosis'; | |||
font-style: normal; | |||
font-weight: 200; | |||
/*src: local('Dosis ExtraLight'), local('Dosis-ExtraLight'), url(zuuDDmIlQfJeEM3Uf6kkpvesZW2xOQ-xsNqO47m55DA.woff) format('woff');*/ | |||
src: url(fonts/dosis/zuuDDmIlQfJeEM3Uf6kkpvesZW2xOQ-xsNqO47m55DA.woff) format('woff'); | |||
|
r36 | } | |
@font-face { | |||
|
r35 | font-family: 'Dosis'; | |
font-style: normal; | |||
font-weight: 400; | |||
/*src: local('Dosis Regular'), local('Dosis-Regular'), url(xIAtSaglM8LZOYdGmG1JqQ.woff) format('woff');*/ | |||
src: url(fonts/dosis/xIAtSaglM8LZOYdGmG1JqQ.woff) format('woff'); | |||
|
r36 | } | |
@font-face { | |||
|
r35 | font-family: 'Dosis'; | |
font-style: normal; | |||
font-weight: 500; | |||
/*src: local('Dosis Medium'), local('Dosis-Medium'), url(A4RWZsncmJ25G8iqn2EHN_esZW2xOQ-xsNqO47m55DA.woff) format('woff');*/ | |||
src: url(fonts/dosis/A4RWZsncmJ25G8iqn2EHN_esZW2xOQ-xsNqO47m55DA.woff) format('woff'); | |||
|
r36 | } | |
@font-face { | |||
|
r35 | font-family: 'Dosis'; | |
font-style: normal; | |||
font-weight: 700; | |||
/*src: local('Dosis Bold'), local('Dosis-Bold'), url(x-7NZTw0n-ypOAaIE8uSrvesZW2xOQ-xsNqO47m55DA.woff) format('woff');*/ | |||
src: url(fonts/dosis/x-7NZTw0n-ypOAaIE8uSrvesZW2xOQ-xsNqO47m55DA.woff) format('woff'); | |||
|
r36 | } | |
|
r35 | ||
body { | |||
color: #333; | |||
|
r36 | } | |
main { | |||
min-width: 100%; | |||
min-height: 400px; | |||
} | |||
.titulo { | |||
color: #898989; | |||
font-size: 2rem; | |||
font-family: 'Dosis', Arial, Verdana, serif; | |||
} | |||
|
r35 | ||
|
r36 | .titulo:after { | |
|
r35 | display: flex; | |
|
r36 | width: 60px; | |
|
r35 | border-bottom: 3px solid #48C7EC; | |
content: ''; | |||
|
r36 | padding-top: .5rem; | |
margin: 0; | |||
} | |||
|
r25 | ||
.text-blue { | |||
color: #003A8E; | |||
} | |||
.text-skyblue { | |||
color: #00addc; | |||
} | |||
.nopadding { | |||
padding: 0px !important; | |||
} | |||
.nomargin { | |||
margin: 0px !important; | |||
} | |||
|
r36 | .legend { | |
list-style: none; | |||
} | |||
.legend span { | |||
padding-left: 1em; | |||
} | |||
|
r27 | #loader { | |
background-image: url(/static/images/loader.gif); | |||
background-repeat: no-repeat; | |||
height: 40px; | |||
} | |||
|
r36 | #plot { | |
margin-top: 2em; | |||
margin-bottom: 2em; | |||
} | |||
|
r25 | /* Change Buttons Bootstrap */ | |
.btn-primary { | |||
color: #fff; | |||
background-color: #00addc !important; | |||
border-color: #00addc !important; | |||
} | |||
.btn-primary:hover { | |||
color: #fff; | |||
background-color: #23527c !important; | |||
border-color: #23527c !important; | |||
|
r11 | } | |
|
r25 | ||
.card-text { | |||
font-size: 0.8rem; | |||
} | |||
|
r36 | .bc-icons { | |
color: #898989; | |||
} | |||
|
r25 | .bc-icons .breadcrumb-item+.breadcrumb-item::before { | |
content: none; | |||
} | |||
.bc-icons .breadcrumb-item.active { | |||
color: #00addc; | |||
} | |||
/* cards */ | |||
@media (min-width: 480px) { | |||
.card-columns { | |||
column-count: 2; | |||
} | |||
} | |||
@media (min-width: 768px) { | |||
.card-columns { | |||
column-count: 3; | |||
} | |||
} | |||
@media (min-width: 1180px) { | |||
.card-columns { | |||
column-count: 4; | |||
} | |||
} | |||
@media (min-width: 1380px) { | |||
.card-columns { | |||
column-count: 5; | |||
} | |||
} |