Correção de de erros
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cadastro</title>
|
||||
<link rel="stylesheet" href="stylecad.css">
|
||||
<link rel="stylesheet" href="cadastro.css">
|
||||
<link rel="icon" href="imagens/icone.png">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -27,7 +27,6 @@ h3 {
|
||||
padding-left: 20px;
|
||||
font-size: 38px;
|
||||
margin: 0;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
@@ -42,7 +41,6 @@ h3 {
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
#calendario {
|
||||
@@ -51,35 +49,28 @@ h3 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.calendariotop {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
#mes {
|
||||
color: white;
|
||||
font-size: 22px;
|
||||
font-family: "Poppins", sans-serif;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.mes {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.calendarseta {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.prox, .ant {
|
||||
appearance: none;
|
||||
.prox,
|
||||
.ant {
|
||||
border: none;
|
||||
background: none;
|
||||
color: white;
|
||||
@@ -88,13 +79,13 @@ h3 {
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
line-height: 1;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
|
||||
.prox:hover, .ant:hover {
|
||||
.prox:hover,
|
||||
.ant:hover {
|
||||
background: rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
|
||||
@@ -106,7 +97,6 @@ h3 {
|
||||
|
||||
.calendariodia th,
|
||||
.calendariodia td {
|
||||
color: rgb(255, 255, 255);
|
||||
text-align: center;
|
||||
padding: 5px 0;
|
||||
font-size: 12px;
|
||||
@@ -119,6 +109,7 @@ h3 {
|
||||
}
|
||||
|
||||
.calendariodia td {
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
@@ -126,6 +117,7 @@ h3 {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* bolinha abaixo do dia */
|
||||
.calendariodia td::after {
|
||||
content: "";
|
||||
width: 6px;
|
||||
@@ -136,7 +128,6 @@ h3 {
|
||||
bottom: -4px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* COR DOS DIAS DE OUTRO MÊS (CORRIGIDO) */
|
||||
|
||||
@@ -4,41 +4,87 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="stylecal.css">
|
||||
<link rel="icon" href="imagens/icone.png">
|
||||
<title>Calendario</title>
|
||||
<link rel="stylesheet" href="calendario.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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 rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<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>
|
||||
|
||||
<body>
|
||||
|
||||
<!--Barrinha que fica no topo-->
|
||||
<div id="topo">
|
||||
<h1 id="textotop">Focus Agenda</h1>
|
||||
</div>
|
||||
<!--cabo bar-->
|
||||
|
||||
<!--Começo daquele mini calendario na esquerda/-->
|
||||
<body> <!--Barrinha que fica no topo-->
|
||||
<div id="header">
|
||||
<h1 id="title">Focus Agenda</h1>
|
||||
</div> <!--cabo bar--> <!--Começo daquele mini calendario na esquerda/-->
|
||||
<div id="barraesquerda">
|
||||
<div id="tabela">
|
||||
<table>
|
||||
|
||||
<div id="calendario">
|
||||
<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>
|
||||
<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>
|
||||
|
||||
</thead>
|
||||
<tbody>
|
||||
<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>
|
||||
<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>
|
||||
</div>
|
||||
</div>
|
||||
<!--Cabo mini calendario-->
|
||||
|
||||
</div> <!--Cabo mini calendario-->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<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">
|
||||
<title>Login</title>
|
||||
</head>
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
<h3 class="mens">Faça seu login</h3>
|
||||
|
||||
<form method="POST" action="login.html">
|
||||
<form method="POST" action="calendario.html">
|
||||
<div class="campo">
|
||||
<label for="emailid">Email</label>
|
||||
<input type="email" placeholder="Digite seu email" name="email" id="emailid" required>
|
||||
@@ -32,7 +32,7 @@
|
||||
<label for="senhaid">Senha</label>
|
||||
<input type="password" placeholder="Digite sua senha" name="senha" id="senhaid" required>
|
||||
</div>
|
||||
<button type="submit" id="logbtn"><a href="calendario.html">Logar</button>
|
||||
<button type="submit" id="logbtn">Logar</button>
|
||||
</form>
|
||||
<p class="mens"><a href="cadastro.html" id="linkcada">Cadastrar-se</a></p>
|
||||
</div>
|
||||
|
||||
125
stylecad.css
125
stylecad.css
@@ -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;
|
||||
}
|
||||
63
stylecal.css
63
stylecal.css
@@ -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;
|
||||
}
|
||||
125
stylelog.css
125
stylelog.css
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user