Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
EmpregaMais
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
5
Issues
5
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rafaela Ramos
EmpregaMais
Commits
37c7ba2a
Commit
37c7ba2a
authored
Jun 11, 2026
by
Mariana Vieira Schmitt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Melhoria visual da página empresas
parent
18121330
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
9 deletions
+71
-9
style.css
static/style.css
+27
-0
empresas.html
templates/empresas.html
+44
-9
No files found.
static/style.css
View file @
37c7ba2a
...
@@ -179,3 +179,29 @@ body{
...
@@ -179,3 +179,29 @@ body{
.vaga-card
button
:hover
{
.vaga-card
button
:hover
{
background
:
#0b5ed7
;
background
:
#0b5ed7
;
}
}
/* Melhorias visuais */
.vaga-card
{
transition
:
0.3s
;
}
.vaga-card
:hover
{
transform
:
translateY
(
-5px
);
}
@media
(
max-width
:
768px
){
.navbar
{
flex-direction
:
column
;
gap
:
10px
;
}
.hero-content
h1
{
font-size
:
32px
;
}
.menu
a
{
margin
:
0
10px
;
}
}
\ No newline at end of file
templates/empresas.html
View file @
37c7ba2a
...
@@ -9,8 +9,26 @@
...
@@ -9,8 +9,26 @@
</head>
</head>
<body>
<body>
<!DOCTYPE html>
<html
lang=
"pt-BR"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Empresas - EmpregaMais
</title>
<link
rel=
"stylesheet"
href=
"{{ url_for('static', filename='style.css') }}"
>
</head>
<body>
<div
class=
"navbar"
>
<div
class=
"navbar"
>
<div
class=
"logo"
>
<div
class=
"logo"
>
EmpregaMais
EmpregaMais
...
@@ -21,9 +39,11 @@
...
@@ -21,9 +39,11 @@
<a
href=
"/cadastro"
>
Cadastrar
</a>
<a
href=
"/cadastro"
>
Cadastrar
</a>
</div>
</div>
</div>
</div>
<div
class=
"hero"
>
<div
class=
"hero
"
>
<div
class=
"hero-content
"
>
<h1>
Empresas Contratando
</h1>
<h1>
Empresas Contratando
</h1>
...
@@ -31,9 +51,11 @@
...
@@ -31,9 +51,11 @@
Confira vagas disponíveis agora.
Confira vagas disponíveis agora.
</p>
</p>
</div>
</div>
<div
class=
"container"
>
</div>
<div
class=
"container"
>
<div
class=
"vagas-grid"
>
<div
class=
"vagas-grid"
>
...
@@ -43,17 +65,28 @@
...
@@ -43,17 +65,28 @@
<h2>
{{ vaga.empresa }}
</h2>
<h2>
{{ vaga.empresa }}
</h2>
<p><strong>
Vaga:
</strong>
{{ vaga.vaga }}
</p>
<p>
<strong>
Vaga:
</strong>
{{ vaga.vaga }}
</p>
<p><strong>
Cidade:
</strong>
{{ vaga.cidade }}
</p>
<p>
<strong>
Cidade:
</strong>
{{ vaga.cidade }}
</p>
<p><strong>
Salário:
</strong>
{{ vaga.salario }}
</p>
<p>
<strong>
Salário:
</strong>
{{ vaga.salario }}
</p>
<br>
<br>
<a
href=
"/cadastro"
>
<button>
<button>
Candidatar-se
Candidatar-se
</button>
</button>
</a>
</div>
</div>
...
@@ -61,7 +94,8 @@
...
@@ -61,7 +94,8 @@
</div>
</div>
</div>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment