-
Notifications
You must be signed in to change notification settings - Fork 0
/
VAGADEMATU.CSS
118 lines (102 loc) · 2.08 KB
/
VAGADEMATU.CSS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@keyframes zoomIn {
0% {
transform: scale(0.8);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 20px;
animation: zoomIn 0.6s;
}
.navbar {
width: 100%;
background: #fff;
padding: 10px 0;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.navbar img {
height: 50px;
margin-left: 20px;
}
.navbar a {
color: #333;
text-decoration: none;
margin-right: 20px;
font-weight: bold;
}
.container {
width: 100%;
max-width: 800px;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.vaga {
margin-bottom: 40px;
}
.vaga h2 {
font-size: 24px;
margin-bottom: 10px;
}
.vaga .descricao, .vaga .requisitos, .vaga .beneficios, .vaga .localizacao {
background: #f9f9f9;
padding: 15px;
border-radius: 6px;
margin-bottom: 10px;
}
.vaga .descricao h3, .vaga .requisitos h3, .vaga .beneficios h3, .vaga .localizacao h3 {
font-size: 18px;
margin-bottom: 10px;
}
.vaga .descricao ul, .vaga .requisitos ul, .vaga .beneficios ul {
list-style: none;
padding-left: 0;
}
.vaga .descricao ul li, .vaga .requisitos ul li, .vaga .beneficios ul li {
margin-bottom: 5px;
}
.vaga button {
background: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
}
.vaga button:hover {
background: #45a049;
}
.vaga .localizacao {
display: flex;
align-items: center;
font-size: 14px;
}
.vaga .localizacao img {
margin-right: 10px;
}
.success-message {
display: none;
background: #dff0d8;
color: #3c763d;
padding: 10px 15px;
border-radius: 5px;
margin-top: 20px;
text-align: center;
}