-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (98 loc) · 1.63 KB
/
style.css
File metadata and controls
111 lines (98 loc) · 1.63 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
/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #f8f9fa;
color: #222;
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Header */
header {
background: linear-gradient(90deg, #005bea 0%, #3ad29f 100%);
color: #fff;
padding: 2rem 0 1rem 0;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
header h1 {
font-size: 2.5rem;
letter-spacing: 1px;
margin-bottom: 0.5rem;
}
nav {
margin-top: 1rem;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 1.2rem;
font-size: 1.1rem;
font-weight: 500;
transition: color 0.2s;
position: relative;
}
nav a::after {
content: '';
display: block;
width: 0;
height: 2px;
background: #fff;
transition: width 0.3s;
margin: 0 auto;
}
nav a:hover,
nav a:focus {
color: #3ad29f;
}
nav a:hover::after,
nav a:focus::after {
width: 80%;
background: #3ad29f;
}
/* Seções */
section {
max-width: 600px;
margin: 2.5rem auto;
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
padding: 2rem 2rem 1rem 2rem;
}
section h2 {
color: #005bea;
margin-bottom: 1rem;
font-size: 2rem;
}
section p {
font-size: 1.1rem;
}
/* Footer */
footer {
background: #222;
color: #fff;
text-align: center;
padding: 1rem 0;
margin-top: auto;
font-size: 1rem;
letter-spacing: 0.5px;
}
@media (max-width: 700px) {
section {
padding: 1.2rem 0.8rem 0.8rem 0.8rem;
margin: 1rem 0.5rem;
}
header h1 {
font-size: 1.6rem;
}
nav a {
margin: 0 0.4rem;
font-size: 1rem;
}
}