Compare commits

..

2 Commits

Author SHA1 Message Date
9eb90bf2ec Remove submódulo FrontFocusAgenda 2026-03-01 17:04:04 -03:00
e0dff0ec3d Remoção do fundo para melhor estilização 2026-03-01 16:49:38 -03:00
3 changed files with 177 additions and 195 deletions

Submodule FrontFocusAgenda deleted from f635a4e943

View File

@@ -1,45 +1,49 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="pt-br"> <html lang="pt-br">
<head> <head>
<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">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
<title>TCC de cria</title> <title>TCC de cria</title>
</head> </head>
<body> <body>
<!--Barrinha que fica no topo--> <!--Barrinha que fica no topo-->
<div id="topo"> <div id="topo">
<h1 id="textotop">Focus Agenda</h1> <h1 id="textotop">Focus Agenda</h1>
</div> </div>
<!--cabo bar--> <!--cabo bar-->
<!--Login e outras coisas--> <!--Login e outras coisas-->
<div id="log"> <div id="log">
<h1 class="mens">Bem Vindo!</h1> <h1 class="mens">Bem Vindo!</h1>
<h3 class="mens">Faça seu login</h3> <h3 class="mens">Faça seu login</h3>
<form method="POST" action="login.php"> <form method="POST" action="login.php">
<div class="campo"> <div class="campo">
<label for="emailid">Email</label> <label for="emailid">Email</label>
<input type="email" placeholder="Digite seu email" name="email" id="emailid" required> <input type="email" placeholder="Digite seu email" name="email" id="emailid" required>
</div> </div>
<div class="campo"> <div class="campo">
<label for="senhaid">Senha</label> <label for="senhaid">Senha</label>
<input type="password" placeholder="Digite sua senha" name="senha" id="senhaid" required> <input type="password" placeholder="Digite sua senha" name="senha" id="senhaid" required>
</div> </div>
<button type="submit" id="logbtn">Logar</button> <button type="submit" id="logbtn">Logar</button>
</form> </form>
<p class="mens">Cadastrar-se</p> <p class="mens">Cadastrar-se</p>
</div> </div>
<!--cabo log--> <!--cabo log-->
</body>
</body>
</html> </html>

279
style.css
View File

@@ -1,150 +1,129 @@
* { * {
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
p, p,
h1, h1,
h2, h2,
h3 { h3 {
margin: 0; margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
} }
label { label{
display: block; display: block;
} }
body { body {
background-image: url(imagens/fundo1.png);
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center; background-position: center;
background-attachment: fixed; background-attachment: fixed;
height: 100vh; height: 100vh;
display: flex; display: flex;
justify-content: center; justify-content: flex-start;
align-items: center; align-items: center;
padding-left: 0; padding-left: 300px;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
body { body {
padding-left: 20px; padding-left: 20px;
padding-right: 20px; padding-right: 20px;
justify-content: center; justify-content: center;
} }
} }
@media (max-width: 480px) { @media (max-width: 480px) {
#log { #log {
width: 100% !important; width: 100% !important;
max-width: 320px; max-width: 320px;
} }
} }
#topo {
#topo { width: 100%;
width: 100%; height: 70px;
height: 70px; background-color: #111;
background-color: #111; position: fixed;
position: fixed; top: 0;
top: 0; left: 0;
left: 0; background: linear-gradient(to right, #C0392B 47%, #7A4951 73%, #114455 87%);
background: linear-gradient(to right, #C0392B 47%, #7A4951 73%, #114455 87%); display: flex;
display: flex; align-items: center;
align-items: center; justify-content: flex-start;
justify-content: flex-start; padding-left: 20px;
padding-left: 20px;
}
}
#textotop {
#textotop { font-size: 48px;
font-size: 48px; margin: 0;
margin: 0; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; }
}
#log {
#log { margin-top: 70px;
margin-top: 70px; width: 350px;
width: 350px; display: flex;
display: flex; flex-direction: column;
flex-direction: column; gap: 15px;
gap: 15px; color: white;
color: rgb(0, 0, 0); margin: 0;
margin: 0; }
} #campo {
display: flex;
#campo { flex-direction: column;
display: flex; gap: 15px;
flex-direction: column; align-self: center;
gap: 15px; }
align-self: center; #menslog{
} font-size: 20px;
}
#menslog {
font-size: 20px; #emailid, #senhaid {
} height: 50px;
width: 100%;
#emailid, padding: 10px;
#senhaid { font-size: 16px;
height: 50px; border: 1px solid #ccc;
width: 100%; border-radius: 4px;
padding: 10px; box-sizing: border-box;
font-size: 16px; }
border: 1px solid #ccc;
border-radius: 4px; label {
box-sizing: border-box; display: block;
} margin-bottom: 5px;
font-weight: bold;
label { color: white;
display: block; }
margin-bottom: 5px;
font-weight: bold; form {
color: white; display: flex;
} flex-direction: column;
gap: 15px;
form { width: 100%;
display: flex; }
flex-direction: column;
gap: 15px; #logbtn {
width: 100%; align-self: center;
} width: 50%;
padding: 12px;
#logbtn { font-size: 18px;
align-self: center; font-weight: bold;
width: 50%; background-color: #C0392B;
padding: 12px; color: white;
font-size: 18px; border: none;
font-weight: bold; border-radius: 4px;
background-color: #C0392B; cursor: pointer;
color: white; transition: background-color 0.3s;
border: none; }
border-radius: 4px;
cursor: pointer; #logbtn:hover {
transition: background-color 0.3s; background-color: #A03224;
} }
.mens {
#logbtn:hover { align-self: center;
background-color: #A03224; }
}
.mens {
align-self: center;
}
.mens-links {
display: flex;
justify-content: center;
gap: 20px;
}
.mens-links a {
color: inherit;
text-decoration: none;
font-weight: bold;
}
.mens-links a:hover {
text-decoration: underline;
}