From 2ae1c143fdb19a9195762b5d39749979ad9055d7 Mon Sep 17 00:00:00 2001 From: Isaac Castro Date: Mon, 1 Oct 2018 11:30:48 -0300 Subject: [PATCH] Add css correcao tbl e footer --- sapl/static/styles/_app.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sapl/static/styles/_app.css diff --git a/sapl/static/styles/_app.css b/sapl/static/styles/_app.css new file mode 100644 index 000000000..fb737d385 --- /dev/null +++ b/sapl/static/styles/_app.css @@ -0,0 +1,29 @@ +/*FOOTER +Corrige a quebra de fluxo do background no rodapé com resoluções abaixo de 992px.*/ + +.footer{ + position:absolute; + width:100%; + background:#364347 none repeat scroll 0% 0%; + color:white;text-align:center; + margin-top:20px; +} + + +/*MEDIA QUERIES +---> corrige a exibição de tabelas em resoluções menores que 512px*/ + +@media screen and (max-width: 512px) { + .table{ + width: auto; + white-space: normal; + display:block; + overflow-x: auto; + } +} + + + + + +