-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (100 loc) · 1.85 KB
/
style.css
File metadata and controls
116 lines (100 loc) · 1.85 KB
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
/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Estilo do corpo */
body {
font-family: 'Arial';
line-height: 1.6;
color: #333;
background-color: #f4f4f9;
padding-bottom: 50px;
}
/* Cabeçalho */
header {
background-color: #0078d7;
color: #fff;
text-align: center;
padding: 20px 10px;
}
header img {
width: 300px;
height: 300px;
}
/* Navegação */
nav {
background-color: #005a9e;
}
nav ul {
display: flex;
justify-content: center;
list-style: none;
padding: 0;
}
nav li {
margin: 0 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 15px;
display: block;
font-weight: bold;
transition: background 0.3s;
}
nav a:hover {
background-color: #003b6f;
border-radius: 5px;
}
/* Conteúdo */
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
text-align: center;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: justify;
}
.container h2 {
color: #0078d7;
margin-bottom: 15px;
}
form input, form textarea, form button {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
background-color: #0078d7;
color: white;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
}
form button:hover {
background-color: #005a9e;
}
/* Rodapé */
footer {
text-align: center;
padding: 15px;
background-color: #333;
color: #fff;
margin-top: 30px;
}
footer a {
color: #0078d7;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.guias {
text-align: center;
}