1
0
forked from orson/bachemap

more stuffs in menu bar

This commit is contained in:
Orson 2024-09-05 16:33:55 -06:00
parent 25f449c09f
commit d0619d5fb3
3 changed files with 10 additions and 8 deletions

View File

@ -75,7 +75,7 @@ nav {
background-color: rgba(202, 216, 3, 0.7);
padding: 5px;
z-index: 1000;
font-size: 110%;
font-size: 100%;
overflow: hidden;
}

View File

@ -1,9 +1,9 @@
<!DOCTYPE html>
<html data-theme="light" lang="en" style="background-color: rgb(205, 243, 148); color: black;">
<html data-theme="light" lang="es" style="background-color: rgb(205, 243, 148); color: black;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Interactive Map</title>
<title>Mapa interactivo de baches y otras cosas</title>
<link rel="stylesheet" href="{{ url_for('static', filename='pico.amber.css') }}">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
@ -31,10 +31,10 @@
<ul>
<li><button id="pinner-top">Agregar</button></li>
<li><button><a href="/quienes">Quienes somos</a></button></li>
<li><button><a href="/quienes">Somos</a></button></li>
{% if current_user.is_authenticated %}
<li><button><a href="/dashboard">Perfil</a></button></li>
<li><button><a href="/logout">Cerrar sesión</a></button></li>
<li><button style="background-color: rgb(241, 165, 0);"><a href="/logout">Salir</a></button></li>
{% endif %}
</ul>
</nav>

View File

@ -2,13 +2,15 @@
<html data-theme="light" lang="es" style="background-color: rgb(205, 243, 148); color: black;">
<head>
<meta charset="UTF-8">
<title>Interactive Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mapa interactivo de baches y otras cosas</title>
<link rel="stylesheet" href="{{ url_for('static', filename='pico.amber.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body style="background-color: rgb(205, 243, 148); color: black;overflow-y: scroll;">
<body style="color: black;overflow-y: scroll;">
<nav style="height: auto;">
<ul>
<a href="/"><li><h3 style="margin-bottom: 0;">Bachemapa</h3></li></a>
@ -17,7 +19,7 @@
<ul>
<li><button id="pinner-top"><a href="/">Al mapa</a></button></li>
<li><button><a href="/quienes">Quienes somos</a></button></li>
<li><button><a href="/quienes">Somos</a></button></li>
</ul>
</nav>
{% with messages = get_flashed_messages() %}