EVOLUTION-MANAGER
Edit File: 503.blade.php
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Sitio web en mantenimiento</title> <link href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" rel="stylesheet"> <style> /* Reset estilos por defecto */ *, *::before, *::after { box-sizing: border-box; } body, html { font-family: 'Source Sans Pro', sans-serif; margin: 0; padding: 0; line-height: 1.2; } h1, h2, h3, p { margin: 0; font-weight: 400; } a { text-decoration: none; color: white; } .coverPage { display: flex; align-items: start; justify-content: center; height: 100vh; background-image: url(admin/logo-grande.jpg); background-repeat: inherit; background-position: top; background-size: cover; } .coverPage::before { content: ''; display: block; position: absolute; /* background: black; */ opacity: .8; width: 100vw; height: 100vh; top: 0; } .__coverPage-content { /* display: flex; */ align-items: center; justify-content: center; flex-direction: column; color: white; height: 50%; width: 100%; z-index: 1000; text-align: center; opacity: .9; padding: 0em; } .__coverPage-content h1 { /* font-size: 3.5em; color: #ffffff; font-family: fantasy; opacity: 1; background-color: #00000059; */ background-color: #00000059; margin-top: 6%; /* font-family: Georgia, "Times New Roman", Times, serif; */ font-family: system-ui; font-size: 3em; text-align: center; font-weight: 700; padding: 10px 5px; /* text-shadow: 0 1px 0 rgb(200, 200, 200), 0 2px 0 rgb(190, 190, 190), 0 3px 0 rgb(180, 180, 180), 0 4px 0 rgb(175, 175, 175), 0 5px 0 rgb(180, 180, 180), 0 6px 0 rgb(190, 190, 190), 5px 7px 5px rgba(0, 0, 0, .40), 5px 12px 10px rgba(0, 0, 0, .30), 5px 17px 20px rgba(0, 0, 0, .20), 5px 22px 30px rgba(0, 0, 0, .10); color: white; */ text-shadow:0px 0px 0 rgb(212,212,212),1px 1px 0 rgb(178,178,178), 2px 2px 0 rgb(145,145,145),3px 3px 2px rgba(0,0,0,0.1),3px 3px 1px rgba(0,0,0,0.5),0px 0px 2px rgba(0,0,0,.2); } @media(max-width: 991px){ .__coverPage-content h1 { font-size: 2em; margin-top: 8%; } } .__coverPage-content h2 { font-size: 2.2em; margin-bottom: 1.5em; } .__coverPage-content h3 { font-size: 1.6em; margin-bottom: .8em; text-transform: uppercase; opacity: .7; } .__coverPage-content p { font-size: .95em; margin-bottom: 1.5em; line-height: 1.5; opacity: .7; } .socialIcon { margin-right: 10px; opacity: .7; } .socialIcon i { display: inline-flex; justify-content: center; align-items: center; font-size: 20px; border: 2px solid white; border-radius: 50%; padding: 15px; height: 25px; width: 25px; transition: all .3s } .socialIcon i:hover { color: #0cfff3; border-color: #0cfff3; font-weight: 700; } .socialMedia{ position: absolute; bottom: 0; padding: 9px; background-color: #00000059; width: 100%; text-align: center; } @media screen and (min-width: 321px) and (max-width: 1023px) { .__coverPage-content { width: 100%; } } </style> </head> <body> <div class="coverPage"> <div class="__coverPage-content"> <h1>PÁGINA WEB EN MANTENIMIENTO</h1> </div> <div class="socialMedia"> <a class="socialIcon" href="https://www.facebook.com/MunicipioCantonSucre"><i class="fab fa-facebook-f"></i></a> <a class="socialIcon" href="https://www.instagram.com/gad_sucre"><i class="fab fa-instagram"></i></a> </div> </div> </body> </html>