Delete style.css

This commit is contained in:
Gabriel de Jesus 2020-09-09 19:03:56 -03:00 committed by GitHub
parent 385328d7fd
commit 67d69a377b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,84 +0,0 @@
*{
outline:none;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}
body {
margin:0;
padding:0;
}
/* ================================================== default ================================================= */
:root {
--text:#747474;
--black:#141414;
--primary:#2DC5FF;
}
.container {
width:772px;
display:flex;
border-radius:10px;
background-color:#FEFEFE;
box-shadow:-1px 10px 20px #2dc5ff33;
}
.column {
flex-direction:column;
}
h1 {
margin:0;
margin-top:30px;
font-size:30px;
font-weight:700;
color:var(--black);
margin-left:30px;
margin-bottom:20px;
}
/* ================================================== main ================================================= */
main {
width:100vw;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
background-color:#222;
}
/* ================================================== form ================================================= */
form {
display:flex;
}
input[type="text"] {
height:50px;
font-size:20px;
font-weight:400;
color:var(--text);
padding:10px;
border-radius:6px;
border:2px solid #E4E4E4;
background-color:#F1F1F1;
margin:0px 30px 0px 30px;
}
textarea {
height:242px;
font-size:20px;
font-weight:400;
color:var(--text);
padding:10px;
border-radius:6px;
background-color:#E8E8E8;
margin:0px 30px 30px 30px;
border:0;
border-top-right-radius:6px;
border-bottom-right-radius:6px;
border-left:8px solid var(--primary);
}
input[type="submit"] {
cursor:pointer;
height:60px;
color:#FFF;
font-size:35px;
font-weight:700;
border:0;
border-radius:6px;
margin:0px 30px 30px 30px;
background-color:var(--primary);
box-shadow:-2px 10px 20px #3ba8fb33;
}