-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaboutfix.css
82 lines (82 loc) · 1.4 KB
/
aboutfix.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
.container
{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.container .card
{
width: 330px;
height: 416px;
padding: 60px 30px;
margin: 20px;
background: #f2f3f7;
border-radius: 20px;
}
.container .card .content
{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container .card .content .imgBx
{
width: 180px;
height: 180px;
border-radius: 50%;
position: relative;
margin-bottom: 20px;
overflow: hidden;
}
.container .card .content .imgBx img
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.container .card .content .contentBx h4
{
color: #36187d;
font-size: 25px;
font-weight: bold;
text-align: center;
letter-spacing: 1px;
}
.container .card .content .contentBx h5
{
color: #6c758f;
font-size: 1.2rem;
font-weight: bold;
text-align: center;
}
.container .card .content .sci
{
margin-top: 20px;
}
.container .card .content .sci a
{
text-decoration: none;
color: #6c758f;
font-size: 20px;
margin: 10px;
transition: color 0.4s;
}
.container .card .content .sci a:hover
{
color: #0196e3;
}
/* colors
#f2f3f7
#d2dce9
#36187d
#6c758f
#0196e3
*/
.about{
color: white;
}