Nova folla de estilos coas cores. Correccions varias.

This commit is contained in:
Laegnur 2022-04-05 09:33:40 +02:00
parent 09e61afeae
commit af2e5f4934
4 changed files with 1001 additions and 14 deletions

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@
<title><?php echo $titulo; ?></title> <title><?php echo $titulo; ?></title>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php if($inicio->descripcion_sitio): ?> <?php if($configuracion['descripcion_sitio']): ?>
<meta name="description" content="<?php echo $configuracion['nome_sitio'] . ' ' . $configuracion['descripcion_sitio']; ?>" /> <meta name="description" content="<?php echo $configuracion['nome_sitio'] . ' ' . $configuracion['descripcion_sitio']; ?>" />
<?php endif; ?> <?php endif; ?>
<meta name="msapplication-TileColor" content="#00aba9"> <meta name="msapplication-TileColor" content="#00aba9">
@ -18,7 +18,9 @@
<link rel="shortcut icon" href="<?php echo $config->urls->templates; ?>images/favicon.ico"> <link rel="shortcut icon" href="<?php echo $config->urls->templates; ?>images/favicon.ico">
<link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/reset.css" /> <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/reset.css" />
<link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/fonts.css" /> <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/fonts.css" />
<link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/colors.css" />
<link title="Praia de Seselle" rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>css/style.css" /> <link title="Praia de Seselle" rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>css/style.css" />
<link rel="alternate" hreflang="es" href="https://praiadeseselle.com" />
<?php foreach($languages as $idioma): ?> <?php foreach($languages as $idioma): ?>
<?php if(!$page->viewable($idioma)): continue; endif; ?> <?php if(!$page->viewable($idioma)): continue; endif; ?>
<link rel="alternate" hreflang="<?php echo $inicio->getLanguageValue($idioma, 'name'); ?>" href="<?php echo $page->localHttpUrl($idioma); ?>" /> <link rel="alternate" hreflang="<?php echo $inicio->getLanguageValue($idioma, 'name'); ?>" href="<?php echo $page->localHttpUrl($idioma); ?>" />

View file

@ -0,0 +1,8 @@
:root
{
font-size: 16px;
--color_60: 255, 255, 255;
--color_30: 0, 131, 125;
--color_10: 0, 0, 0;
}

View file

@ -3,15 +3,6 @@
box-sizing: border-box; box-sizing: border-box;
} }
:root
{
font-size: 16px;
--color_60: 255, 255, 255;
--color_30: 0, 99, 94;
--color_10: 0, 0, 0;
}
body body
{ {
display: flex; display: flex;
@ -87,10 +78,6 @@ header#cabeceira
margin-bottom: 1.125rem; margin-bottom: 1.125rem;
padding: 0.625rem; padding: 0.625rem;
box-shadow: 0px 16px 24px 2px rgba(var(--color_30), 0.14),
0px 6px 30px 5px rgba(var(--color_30), 0.12),
0px 8px 10px -5px rgba(var(--color_30), 0.2);
} }
div#logo div#logo