Skip to content

Commit

Permalink
feat: logo page
Browse files Browse the repository at this point in the history
  • Loading branch information
guiseek committed Jul 11, 2024
1 parent 2513aa4 commit 6cd48c4
Show file tree
Hide file tree
Showing 9 changed files with 171 additions and 1 deletion.
100 changes: 100 additions & 0 deletions logo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Recursos de identidade DevParaná</title>
<style type="text/css">
html,
body {
height: 100%;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.2em;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

h1 {
color: #15a04b;
}

hr {
border-color: #15a04b;
border-width: 0.4px;
border-style: dashed;
opacity: 0.5;
width: 100%;
}

figure {
margin: 0;
padding: 2em;
max-width: 480px;
display: flex;
flex-direction: column;
gap: 2em;
}
figure img {
max-width: inherit;
}
figure figcaption {
text-align: center;
}
</style>
</head>
<body>
<h1>Recursos de identidade DevParaná</h1>

<hr />

<figure>
<img src="logo.svg" alt="Logo" width="1000" />
<figcaption>
Logo - Download:

<a href="logo.svg" download="devparana-logo.svg">SVG</a>
<a href="logo.png" download="devparana-logo.png">PNG</a>
</figcaption>
</figure>

<hr />

<figure>
<img src="logo-fundo-claro.svg" alt="Logo" width="1000" />
<figcaption>
Logo para fundo claro - Download:

<a href="logo-fundo-claro.svg" download="devparana-logo-fundo-claro.svg"
>SVG</a
>
<a href="logo-fundo-claro.png" download="devparana-logo-fundo-claro.png"
>PNG</a
>
</figcaption>
</figure>

<hr />

<figure>
<img src="logo-fundo-escuro.svg" alt="Logo" width="1000" />
<figcaption>
Logo para fundo escuro - Download:

<a
href="logo-fundo-escuro.svg"
download="devparana-logo-fundo-escuro.svg"
>SVG</a
>
<a
href="logo-fundo-escuro.png"
download="devparana-logo-fundo-escuro.png"
>PNG</a
>
</figcaption>
</figure>
</body>
</html>
Binary file added logo/public/logo-fundo-claro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions logo/public/logo-fundo-claro.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/public/logo-fundo-escuro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6cd48c4

Please sign in to comment.