Inicio do Projeto.
This commit is contained in:
0
css/LoginStyle.css
Normal file
0
css/LoginStyle.css
Normal file
55
css/base.css
Normal file
55
css/base.css
Normal file
@@ -0,0 +1,55 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
|
||||
/* icones */
|
||||
|
||||
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
|
||||
/* font-family: "Roboto Mono", monospace; */
|
||||
|
||||
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
|
||||
/* font-family: "Public Sans", sans-serif; */
|
||||
|
||||
:root {
|
||||
--font: #c4e5f2;
|
||||
--bg-dark: #010d26;
|
||||
--bg-light: #9cc1d9;
|
||||
--btn: #0000cc;
|
||||
--btn-dark: #000080;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
color: var(--font);
|
||||
list-style: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
background: linear-gradient(
|
||||
130deg,
|
||||
var(--bg-dark) 50%,
|
||||
var(--bg-light) 200%
|
||||
);
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
#btn {
|
||||
cursor: pointer;
|
||||
background-color: var(--btn);
|
||||
padding: 1.5dvh;
|
||||
font-size: 1.2em;
|
||||
border-radius: 10dvw;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#btn:hover {
|
||||
background-color: var(--btn-dark);
|
||||
}
|
||||
47
css/style.css
Normal file
47
css/style.css
Normal file
@@ -0,0 +1,47 @@
|
||||
#menu {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-bottom: solid 2px var(--btn);
|
||||
min-height: 5dvw;
|
||||
background-color: #0000007a;
|
||||
label {
|
||||
padding: 1dvw;
|
||||
}
|
||||
ul {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 100%;
|
||||
li {
|
||||
margin: 0 1dvw 0 1dvw;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#search {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 25dvw;
|
||||
|
||||
hgroup {
|
||||
width: 60%;
|
||||
h1 {
|
||||
color: var(--btn);
|
||||
text-align: center;
|
||||
font-family: "Public Sans", sans-serif;
|
||||
font-size: 3em;
|
||||
font-weight: 900;
|
||||
}
|
||||
label {
|
||||
word-break: break-all;
|
||||
font-weight: 400;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
}
|
||||
}
|
||||
43
index.html
Normal file
43
index.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<!doctype html>
|
||||
<html lang="pt-br">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="css/base.css" />
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<title>;-;</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="menu">
|
||||
<label>Logo</label>
|
||||
<header>
|
||||
<ul>
|
||||
<li id="btn">
|
||||
<a> Inicio </a>
|
||||
</li>
|
||||
<li id="btn">
|
||||
<a> Escrever Historia </a>
|
||||
</li>
|
||||
</ul>
|
||||
</header>
|
||||
</div>
|
||||
<nav id="search">
|
||||
<hgroup>
|
||||
<h1>Bem-vindos a biblioteca secreta</h1>
|
||||
<label>
|
||||
Em meio ao silêncio e às sombras das estantes antigas, este
|
||||
é um lugar para mergulhar em histórias, registrar
|
||||
pensamentos e desvendar os segredos do conhecimento oculto.
|
||||
</label>
|
||||
</hgroup>
|
||||
<ul>
|
||||
<li>
|
||||
<input type="text" placeholder="pesquisar titulo.." />
|
||||
<a>
|
||||
<span class="material-symbols-outlined"> search </span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
</html>
|
||||
33
login.html
Normal file
33
login.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-br">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/LoginStyle.css">
|
||||
<title>Login</title>
|
||||
</head>
|
||||
<body>
|
||||
<form method="POST" action="#">
|
||||
<div class="main-login">
|
||||
|
||||
<div class="left-login">
|
||||
<h1>Faça Login<br>Mergulhe em histórias que farão sua alma tremer</h1>
|
||||
</div>
|
||||
|
||||
<div class="right-login"></div>
|
||||
<div class="card-login">
|
||||
<h1>LOGIN</h1>
|
||||
<div class="textfield">
|
||||
<label for="usuario">Usuário</label>
|
||||
<input type="text" name="usuario" placeholder="Usuário">
|
||||
</div>
|
||||
<div class="textfield">
|
||||
<label for="senha">Senha</label>
|
||||
<input type="password" name="Senha" placeholder="senha">
|
||||
</div>
|
||||
<button class="btn-login">Login</button>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
BIN
refs/AdobeColor-IN_QUIET_TRANSFORMATION_Norway.jpeg
Normal file
BIN
refs/AdobeColor-IN_QUIET_TRANSFORMATION_Norway.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 70 KiB |
BIN
refs/layout 1-1.png
Normal file
BIN
refs/layout 1-1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 156 KiB |
BIN
refs/layout1.png
Normal file
BIN
refs/layout1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 253 KiB |
Reference in New Issue
Block a user