-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (56 loc) · 881 Bytes
/
style.css
File metadata and controls
58 lines (56 loc) · 881 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
54
55
56
57
58
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
background:rgb(27, 27,27);
}
.container
{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.card
{
background:white;
width: 240px;
height: 400px;
margin: 10px;
border-radius: 15px;
}
.card-image{
background: aqua;
height: 200px;
margin-bottom: 15px;
background-size: cover;
}
.card-1
{
background-image:url('./img/sabiduria.png') ;
}
.card-2
{
background-image:url('./img/entendimiento.png') ;
}
.card-3
{
background-image:url('./img/consejo.png') ;
}
.card-4
{
background-image:url('./img/ciencia.png') ;
}
.card-5
{
background-image:url('./img/piedad.png') ;
}
.card-6
{
background-image:url('./img/fortaleza.png') ;
}
.card-7
{
background-image:url('./img/temordeDios.png') ;
}