-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (88 loc) · 1.64 KB
/
style.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
/* Reset básico para garantir que o estilo seja consistente entre navegadores */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Estilo do corpo da página */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
padding: 20px;
}
/* Estilo do contêiner principal */
div {
max-width: 800px;
margin: 0 auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Estilo para os títulos h1 e h2 */
h1 {
font-size: 2.5em;
color: #333;
margin-bottom: 20px;
}
h2 {
font-size: 2em;
color: #555;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
margin-bottom: 20px;
}
/* Estilo para os parágrafos */
p {
margin-bottom: 20px;
}
/* Estilo para as listas */
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 10px;
}
ul li::before {
content: "• ";
color: #007bff;
font-weight: bold;
}
/* Estilo para as listas dentro dos itens */
ul p {
margin-top: -10px;
margin-bottom: 10px;
font-style: italic;
color: #666;
}
/* imagem */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
margin-bottom: 20px;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
border: 2px solid #ddd;
}