-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.css
91 lines (79 loc) · 1.91 KB
/
card.css
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
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap');
*{
box-sizing: border-box;
margin: 0;
}
body{
font-family: 'ABeeZee', sans-serif;
background-color: #505285cc ;
}
.card{
width: 330px;
min-height: 400px;
background-color: #fff;
margin: 0 auto;
margin-top: 70px;
border-radius: 10px;
box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.24);
background-image: linear-gradient(to top, #505285 0%, #585e92 12%, #65689f 25%, #7474b0 37%, #7e7ebb 50%, #8389c7 62%, #9795d4 75%, #a2a1dc 87%, #b5aee4 100%);
background-image: linear-gradient(to top, #505285 0%, #3B2E59 100%);
background-size: 100% 150px;
background-repeat: no-repeat;
text-align: center;
padding: .1px;
}
.card__container{
display: flex;
flex-direction: column;
}
.card__binario{
height: 10px;
color: rgba(255, 255, 255, 0.1);
font-size: 15px;
}
.card__person{
background-image: url('../img/foto_2.jpg');
background-size: cover;
background-position: center;
width: 110px;
height: 110px;
margin: 0 auto;
margin-top: 105px;
border-radius: 50%;
border: 7px solid #fff;
}
.card__name{
margin-top: 20px;
margin-bottom: 10px;
}
.card__media{
margin-top: 40px;
width: 100%;
height: 90px;
border-top: 1px solid #b3a2a2;
display: flex;
justify-content: center;
}
.card__icon{
width: 25%;
height: 100%;
display: block;
background-repeat: no-repeat;
background-size: 30px;
background-position: center;
}
.card__icon--linkedin{
background-image: url('../icons/linkedin.svg');
}
.card__icon--instagram{
background-image: url('../icons/instagram.svg');
}
.card__icon--youtube{
background-image: url('../icons/youtube.svg');
}
.card__icon--whatsapp{
background-image: url('../icons/whatsapp.svg');
}
.card__icon--twitter{
background-image: url('../icons/twitter.svg');
}