-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
87 lines (87 loc) · 1.43 KB
/
Copy pathindex.css
File metadata and controls
87 lines (87 loc) · 1.43 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
body {
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #1a1a1a;
color: #fff;
}
.barra-superior {
width: 100%;
height: 135px;
border-bottom: 2px solid #fff;
padding: 10px;
}
.barra-superior h1 {
text-align: center;
}
.barra-superior a {
color: #fff;
text-decoration: none;
font-size: 20px;
margin: 0 20px;
text-align: left;
}
.barra-superior a:hover {
color: #ffff00;
}
.principal {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
align-items: center;
flex-direction: column;
}
.principal .main-titulo {
width: 100%;
text-align: center;
font-weight: bold;
font-size: 25px;
margin-top: 10px;
}
.card {
width: 500px;
height: 500px;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.card .titulo {
width: 100%;
height: 5%;
font-size: 20px;
font-weight: bold;
color: #fff;
padding: 10px;
}
.card .imagem {
margin-top: 5px;
width: 100%;
height: 90%;
}
.card .imagem img {
border-radius: 20px;
width: 100%;
height: 100%;
padding: 5px;
}
.card .descricao {
width: 100%;
height: 5%;
font-size: 18px;
color: #fff;
padding: 10px;
}
.card .descricao a {
color: #0066ff;
text-decoration: none;
}
.card .descricao a:hover {
color: #ffff00;
}