-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcasos.css
More file actions
53 lines (46 loc) · 1009 Bytes
/
Copy pathcasos.css
File metadata and controls
53 lines (46 loc) · 1009 Bytes
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
.casos {
background-color: var(--btn-color); /*cor dessa secao pode ser tbm1stbg*/
width: 100%;
}
.casos-container { /*copiado de .boxes*/
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, auto));
align-items: center;
gap: 2rem;
margin-top: 5rem;
}
.linha img{
height:auto;
width: 100%;
border-radius: 0.5rem;
margin-bottom: 1.5rem;
}
.linha{
padding: 25px;
border-radius: 0.5rem;
background-color: var(--2ndbtn-color);
transition: all .40s ease;
}
.linha-principal {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}
.linha h3{
font-size: 24px;
font-weight: 700;
}
.linha h6{
color: var(--mainbg-color);
font-size: 16px;
font-weight: 500;
letter-spacing: 1px;
}
.linha-icon i{
font-size: 21px;
}
.linha:hover {
transform: scale(1.01) translateY(-5px);
cursor: pointer;
}