Adicionando CSS do projeto

parent 62a09720
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body{
background: #f4f6f9;
}
/* Navbar */
.navbar{
background: #0d6efd;
color: white;
padding: 15px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo{
font-size: 24px;
font-weight: bold;
}
.menu a{
color: white;
text-decoration: none;
margin-left: 20px;
font-weight: bold;
}
.menu a:hover{
text-decoration: underline;
}
/* Hero */
.hero{
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.hero-content h1{
font-size: 48px;
color: #333;
}
.hero-content p{
margin-top: 15px;
font-size: 18px;
color: #666;
}
.hero button{
margin-top: 25px;
background: #0d6efd;
color: white;
border: none;
border-radius: 8px;
padding: 12px 25px;
cursor: pointer;
font-size: 16px;
}
.hero button:hover{
background: #0b5ed7;
}
/* Formulário */
.card{
width: 500px;
background: white;
margin: 40px auto;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card h1{
text-align: center;
color: #333;
}
.card label{
display: block;
margin-top: 12px;
margin-bottom: 5px;
}
.card input{
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 6px;
}
.card button{
width: 100%;
margin-top: 20px;
background: #198754;
color: white;
border: none;
border-radius: 6px;
padding: 12px;
cursor: pointer;
}
.card button:hover{
background: #157347;
}
/* Empresas */
.container{
width: 90%;
margin: 40px auto;
}
.vagas-grid{
display: grid;
grid-template-columns:
repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.vaga-card{
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.vaga-card h2{
color: #0d6efd;
margin-bottom: 10px;
}
.vaga-card button{
background: #0d6efd;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
}
.vaga-card button:hover{
background: #0b5ed7;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment