Correção de de erros

This commit is contained in:
2026-03-14 15:48:13 -03:00
parent b61b704af7
commit f4223fae6d
7 changed files with 85 additions and 361 deletions

View File

@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro</title> <title>Cadastro</title>
<link rel="stylesheet" href="stylecad.css"> <link rel="stylesheet" href="cadastro.css">
<link rel="icon" href="imagens/icone.png"> <link rel="icon" href="imagens/icone.png">
</head> </head>
<body> <body>

View File

@@ -27,7 +27,6 @@ h3 {
padding-left: 20px; padding-left: 20px;
font-size: 38px; font-size: 38px;
margin: 0; margin: 0;
font-family: 'Poppins', sans-serif;
font-weight: normal; font-weight: normal;
} }
@@ -42,7 +41,6 @@ h3 {
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: flex-start;
} }
#calendario { #calendario {
@@ -51,35 +49,28 @@ h3 {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 16px; gap: 16px;
overflow: hidden;
} }
.calendariotop { .calendariotop {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
gap: 12px;
} }
#mes { #mes {
color: white; color: white;
font-size: 22px; font-size: 22px;
font-family: "Poppins", sans-serif;
font-weight: 600; font-weight: 600;
letter-spacing: 0.02em; letter-spacing: 0.02em;
} }
.mes {
flex: 1;
}
.calendarseta { .calendarseta {
display: flex; display: flex;
gap: 8px; gap: 8px;
} }
.prox, .ant { .prox,
appearance: none; .ant {
border: none; border: none;
background: none; background: none;
color: white; color: white;
@@ -88,13 +79,13 @@ h3 {
border-radius: 50%; border-radius: 50%;
cursor: pointer; cursor: pointer;
font-size: 18px; font-size: 18px;
line-height: 1;
display: grid; display: grid;
place-items: center; place-items: center;
transition: background 0.2s ease; transition: background 0.2s ease;
} }
.prox:hover, .ant:hover { .prox:hover,
.ant:hover {
background: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.15);
} }
@@ -106,7 +97,6 @@ h3 {
.calendariodia th, .calendariodia th,
.calendariodia td { .calendariodia td {
color: rgb(255, 255, 255);
text-align: center; text-align: center;
padding: 5px 0; padding: 5px 0;
font-size: 12px; font-size: 12px;
@@ -119,6 +109,7 @@ h3 {
} }
.calendariodia td { .calendariodia td {
color: white;
border-radius: 50%; border-radius: 50%;
width: 24px; width: 24px;
height: 24px; height: 24px;
@@ -126,6 +117,7 @@ h3 {
vertical-align: middle; vertical-align: middle;
} }
/* bolinha abaixo do dia */
.calendariodia td::after { .calendariodia td::after {
content: ""; content: "";
width: 6px; width: 6px;
@@ -136,7 +128,6 @@ h3 {
bottom: -4px; bottom: -4px;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
opacity: 1;
} }
/* COR DOS DIAS DE OUTRO MÊS (CORRIGIDO) */ /* COR DOS DIAS DE OUTRO MÊS (CORRIGIDO) */

View File

@@ -4,41 +4,87 @@
<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="stylecal.css"> <link rel="stylesheet" href="calendario.css">
<link rel="icon" href="imagens/icone.png">
<title>Calendario</title>
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="icon" href="imagens/icone.png">
</head> </head>
<body> <body> <!--Barrinha que fica no topo-->
<div id="header">
<!--Barrinha que fica no topo--> <h1 id="title">Focus Agenda</h1>
<div id="topo"> </div> <!--cabo bar--> <!--Começo daquele mini calendario na esquerda/-->
<h1 id="textotop">Focus Agenda</h1>
</div>
<!--cabo bar-->
<!--Começo daquele mini calendario na esquerda/-->
<div id="barraesquerda"> <div id="barraesquerda">
<div id="tabela"> <div id="calendario">
<table> <div class="calendariotop">
<div class="mes" id="mes">Janeiro 2025</div>
<div class="calendarseta"> <button class="prox" aria-label="Mês anterior"></button> <button class="ant"
aria-label="Próximo mês"></button> </div>
</div>
<table class="calendariodia">
<thead>
<tr> <tr>
<th id="mes">Janeiro 2025 </th> <th>DOM</th>
<th>SEG</th>
<th>TER</th>
<th>QUA</th>
<th>QUI</th>
<th>SEX</th>
<th>SAB</th>
</tr> </tr>
</thead>
<tbody>
<tr> <tr>
<th>bizarro</th> <td class="outromes">31</td>
<td class="dia">1</td>
<td class="dia">2</td>
<td class="dia">3</td>
<td class="dia">4</td>
<td class="dia">5</td>
<td class="dia">6</td>
</tr> </tr>
<tr>
<td class="dia">7</td>
<td class="dia">8</td>
<td class="dia">9</td>
<td class="dia">10</td>
<td class="dia">11</td>
<td class="dia">12</td>
<td class="dia">13</td>
</tr>
<tr>
<td class="dia">14</td>
<td class="dia">15</td>
<td class="dia">16</td>
<td class="dia">17</td>
<td class="dia">18</td>
<td class="dia">19</td>
<td class="dia">20</td>
</tr>
<tr>
<td class="dia">21</td>
<td class="dia">22</td>
<td class="dia">23</td>
<td class="dia">24</td>
<td class="dia">25</td>
<td class="dia">26</td>
<td class="dia">27</td>
</tr>
<tr>
<td class="dia">28</td>
<td class="dia">29</td>
<td class="dia">30</td>
<td class="dia">31</td>
<td class="outromes">1</td>
<td class="outromes">2</td>
<td class="outromes">3</td>
</tr>
</tbody>
</table> </table>
</div> </div>
</div> </div> <!--Cabo mini calendario-->
<!--Cabo mini calendario-->
</body> </body>
</html> </html>

View File

@@ -3,7 +3,7 @@
<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="stylelog.css"> <link rel="stylesheet" href="login.css">
<link rel="icon" href="imagens/icone.png"> <link rel="icon" href="imagens/icone.png">
<title>Login</title> <title>Login</title>
</head> </head>
@@ -22,7 +22,7 @@
<h3 class="mens">Faça seu login</h3> <h3 class="mens">Faça seu login</h3>
<form method="POST" action="login.html"> <form method="POST" action="calendario.html">
<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>
@@ -32,7 +32,7 @@
<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"><a href="calendario.html">Logar</button> <button type="submit" id="logbtn">Logar</button>
</form> </form>
<p class="mens"><a href="cadastro.html" id="linkcada">Cadastrar-se</a></p> <p class="mens"><a href="cadastro.html" id="linkcada">Cadastrar-se</a></p>
</div> </div>

View File

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

View File

@@ -1,63 +0,0 @@
* {
padding: 0;
margin: 0;
}
p,
h1,
h2,
h3 {
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body {
height: 100vh;
}
#topo {
width: 100%;
height: 50px;
background-color: #111;
position: fixed;
top: 0;
left: 0;
background: linear-gradient(to right, #C0392B 47%, #7A4951 73%, #114455 87%);
display: flex;
align-items: center;
justify-content: flex-start;
}
#textotop {
padding-left: 20px;
font-size: 38px;
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#barraesquerda {
left: 0;
background-color: #C0392B;
height: 100%;
width: 330px;
}
#tabela {
padding-top: 60px;
}
th {
white-space: nowrap;
}
#mes {
padding-left: 13%;
color: white;
font-size: 25px;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
}

View File

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