-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #282 from nossas/hotfix/page-not-found-vote
[Fix] Refatorar styles da página de 404 not found
- Loading branch information
Showing
2 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,17 @@ | |
{% load static %} | ||
|
||
{% block content %} | ||
<section class="grid" style="height: 100vh;"> | ||
<section class="container grid"> | ||
<div class="bg-screenside d-none d-lg-flex g-col-4"> | ||
<div class="screenside" style="background-image:url({% static 'imgs/bg-steps.svg' %});"> | ||
</div> | ||
</div> | ||
<div class="container d-flex align-items-center g-col-12 g-col-lg-8"> | ||
<div class="w-50"> | ||
<div class="d-flex align-items-center g-col-12 g-col-lg-8" style="padding: 115px 0;"> | ||
<div class="d-flex flex-column align-items-md-start gap-3"> | ||
{% block main %} | ||
<h1 class="text-uppercase">Página não <br/> encontrada</h1> | ||
<p class="pb-3">Não conseguimos encontrar essa página. Confira se o link está certo ou volte para o início:</p> | ||
<i class="ds-icon-warning"></i> | ||
<h3 class="text-uppercase fw-bold m-0">Página não <br/> encontrada</h3> | ||
<p class="pb-1">Não conseguimos encontrar esta página. Confira se o link está correto. Se o erro persistir, entre em contato com a gente em <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">[email protected]</a></p> | ||
<button class="btn btn-secondary text-uppercase" type="button" onclick="window.location.href='/'">Voltar ao início</button> | ||
{% endblock %} | ||
</div> | ||
|