-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (60 loc) · 1 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (60 loc) · 1 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
background-color: #000000;
padding: 20px;
color: aliceblue;
}
.descricao {
text-align: center;
margin-bottom: 2em;
}
.secao {
max-width: 1200px;
margin: 0 auto;
box-shadow: 0 0 60px rgb(255, 0, 0);
border-radius: 9px;
display: flex;
background-color: #df3737;
padding: 10px;
}
.texto {
flex: 1;
padding-right: 20px;
padding-left: 2em;
align-self: center;
}
.texto h2 {
line-height: 2em;
margin-bottom: 1em;
text-align: center;
}
.texto p {
line-height: 2em;
margin-bottom: 1.5em;
}
.imagem {
flex: 1;
text-align: center;
align-self: center;
height: 50%;
}
.imagem img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
@media (max-width: 800px) {
.secao {
flex-direction: column;
}
.texto,
.imagem {
padding: 10px;
}
}