aba de escrever

This commit is contained in:
2025-08-08 17:16:53 -03:00
parent 80b18038ad
commit 8c9b6ed169
9 changed files with 171 additions and 155 deletions

View File

@@ -1,82 +0,0 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background-color: #1d1d1d;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-container {
background-color: #9cc1d921;
padding: 40px;
border-radius: 20px;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
width: 300px;
text-align: center;
}
.login-container h2 {
color: white;
margin-bottom: 30px;
font-weight: 500;
}
.input-box {
position: relative;
margin-bottom: 20px;
}
.input-box i {
position: absolute;
top: 12px;
left: 10px;
color: white;
}
.input-box input {
width: 100%;
padding: 10px 10px 10px 35px;
border: none;
border-radius: 10px;
background: #1f1f1f;
color: white;
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
}
.input-box input::placeholder {
color: #aaa;
}
.buttons {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.btn {
width: 48%;
padding: 10px;
background-color: #385c737e;
border: none;
border-radius: 8px;
color: white;
cursor: pointer;
transition: 0.3s;
}
.btn:hover {
background-color: #444;
}
.forgot {
width: 100%;
margin-top: 10px;
}

64
css/escrever.css Normal file
View File

@@ -0,0 +1,64 @@
#write {
width: 100%;
min-height: 90dvh;
display: flex;
#embed-write {
max-width: 50dvh;
display: flex;
align-items: center;
flex-direction: column;
img {
object-fit: cover;
width: 50dvh;
height: 50dvh;
margin: 0 0 1dvw 0;
}
ul {
display: flex;
align-items: center;
flex-direction: column;
li {
margin: 0 0 1dvh 0;
width: 95%;
input[type="text"] {
width: 100%;
outline: none;
font-size: 1.3em;
}
textarea {
font-size: 1.3em;
outline: none;
resize: none;
width: 100%;
height: 25dvh;
}
}
}
}
#text-write {
position: relative;
width: calc(100% - 50dvh - 2px);
border-left: solid 2px var(--btn);
ul {
width: 100%;
min-height: 3dvw;
background: purple;
}
li {
width: 100%;
textarea {
width: 100%;
height: 39dvw;
resize: none;
padding: 1dvh;
}
}
#btn {
position: absolute;
text-align: center;
border-radius: 0;
width: 100%;
bottom: 0;
}
}
}

View File

@@ -87,62 +87,3 @@
}
}
}
#posts {
background-color: #0000007a;
padding: 4dvw 0 4dvw 0;
margin: 4dvw 0 0 0;
width: 100%;
display: flex;
justify-content: center;
ul {
width: calc(100% - 5dvw);
display: flex;
flex-wrap: wrap;
gap: 1.5vw;
a {
width: calc(33.33% - 1dvw - 2px);
height: 30dvh;
overflow: hidden;
border-radius: 1dvw;
li {
overflow: hidden;
width: 100%;
background: rgb(15, 15, 15);
display: flex;
img {
width: 25dvh;
height: 30dvh;
object-fit: cover;
}
hgroup {
width: calc(100% - 25dvh);
label {
display: block;
width: 100%;
text-align: center;
font-size: 1.5em;
font-family: "Special Gothic Expanded One", sans-serif;
color: var(--btn);
}
h3 {
font-family: Arial;
display: block;
width: 100%;
text-align: right;
}
p {
font-family: Arial;
white-space: pre-wrap;
}
}
}
box-shadow: 0 0 0 #000000;
}
a:hover {
box-shadow: 0 0 5vw #84e9ffa7;
z-index: 100;
}
}
}

58
css/inicio.css Normal file
View File

@@ -0,0 +1,58 @@
#posts {
background-color: #0000007a;
padding: 4dvw 0 4dvw 0;
margin: 4dvw 0 0 0;
width: 100%;
display: flex;
justify-content: center;
ul {
width: calc(100% - 5dvw);
display: flex;
flex-wrap: wrap;
gap: 1.5vw;
a {
width: calc(33.33% - 1dvw - 2px);
height: 30dvh;
overflow: hidden;
border-radius: 1dvw;
li {
overflow: hidden;
width: 100%;
background: rgb(15, 15, 15);
display: flex;
img {
width: 25dvh;
height: 30dvh;
object-fit: cover;
}
hgroup {
width: calc(100% - 25dvh);
label {
display: block;
width: 100%;
text-align: center;
font-size: 1.5em;
font-family: "Special Gothic Expanded One", sans-serif;
color: var(--btn);
}
h3 {
font-family: Arial;
display: block;
width: 100%;
text-align: right;
}
p {
font-family: Arial;
white-space: pre-wrap;
}
}
}
box-shadow: 0 0 0 #000000;
}
a:hover {
box-shadow: 0 0 5vw #84e9ffa7;
z-index: 100;
}
}
}