diff --git a/checaSessao.php b/checaSessao.php index 9d0a1ce5..7b43a69c 100644 --- a/checaSessao.php +++ b/checaSessao.php @@ -6,8 +6,8 @@ if ((IsAjax()) && (!isset($_SESSION["SSlogin"]) || !$_SESSION["SSlogin"])) { exit; } /* - * verifica se sessao corrente esta válida - */ +* verifica se sessao corrente esta válida +*/ if (!isset($_SESSION["SSinSession"]) || ($_SESSION["SSinSession"] != "ok")) { $_SESSION["SSinSession"] = "ok"; $_SESSION["SSlogin"] = null; diff --git a/components/Footer/footer.css b/components/Footer/footer.css new file mode 100644 index 00000000..4e8eac8b --- /dev/null +++ b/components/Footer/footer.css @@ -0,0 +1,80 @@ +.footer { + display: flex; + flex: 1; + flex-direction: row; + flex-wrap: wrap; + align-items: stretch; + justify-content: center; + width: 100vw; + height: 150px; + position: relative; + background-color: white; + border-radius: 60px 60px 0 0; + top: -80px; + overflow: hidden; + transition: slideY 1s ease-in-out; +} + +.logo { + display: flex; + flex-direction: column; + font-size: small; + justify-content: center; + align-items: center; +} + +.mainfooter { + color: rgba(100, 100, 100, 0.833); + height: 180px; + background-color: white; +} + +.content-footer { + margin-top: 3px; + margin-left: 20px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-size: small; +} + +.content-footer>p { + margin-bottom: 3px; +} + +.footer p { + font-size: 12px; +} + +.foote img { + width: 60px; + height: 55px; +} + +.links { + display: flex; + flex-direction: row; + justify-content: space-evenly; + align-items: start; + width: 100%; + margin: 45px 5px 15px 5px; +} + +.links a { + text-decoration: none; + color: #2D69F5; + list-style-type: none; + font-size: 18px; +} + +.line { + width: 80%; + height: 2px; + background-color: whitesmoke; +} + +.mainfooter { + -webkit-animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both; + animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both; +} \ No newline at end of file diff --git a/components/Footer/footer.php b/components/Footer/footer.php index af3eb675..03332fbe 100644 --- a/components/Footer/footer.php +++ b/components/Footer/footer.php @@ -1,6 +1,5 @@