forked from VictorHSMoura/Prova-jQuery-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.module.css
More file actions
92 lines (77 loc) · 1.29 KB
/
project.module.css
File metadata and controls
92 lines (77 loc) · 1.29 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
body{
margin: 0;
padding: 0;
}
.hdr{
width: 98.56%;
background-color: #222;
text-align: center;
align-items: center;
padding: 10px;
}
.hdr img{
height: 80px;
}
.list{
margin-top: 50px;
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.item{
margin: 20px;
}
.item img{
height: 30px;
transition: 200ms;
}
.item img:hover{
transform: scale(1.15);
}
.item button{
border: none;
cursor: pointer;
background-color: RGBA(255,255,255,0.1);
}
.catalog{
display: flex;
margin: 0;
flex-wrap: wrap;
justify-content: center;
}
.card{
margin: 20px;
border-radius: 30px;
width: 330px;
border: #4b4b4b solid .8px;
justify-content: center;
text-align: center;
align-items: center;
}
.card img{
height: 250px;
width: 330px;
}
.info{
background-color: grey;
border-radius: 0px 0px 29px 29px;
padding: 20px;
color: aliceblue;
display: flex;
flex-wrap: inherit;
height: 22vh;
}
.desc{
text-align: left;
font-family: system-ui, sans-serif;
font-size: 30px;
align-items: flex-start;
}
.price{
font-family: system-ui, sans-serif;
font-size: 20px;
font-weight: bold;
align-self: flex-end;
margin: 0;
}