-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcustom.css
More file actions
97 lines (84 loc) · 1.68 KB
/
custom.css
File metadata and controls
97 lines (84 loc) · 1.68 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
93
94
95
96
97
.card-container {
padding: 20px;
}
.mentor-card-outer {
border-radius: 15px;
height: 350px;
padding: 50px;
}
.mentor-card-container {
padding: 20px;
}
.mentor-card {
border-width: 1px;
height: 140px;
padding: 30px;
}
.mentor-img {
height: 80px;
width: 80px;
border-radius: 40px;
}
.mentor-name {
font-size: 16px;
margin-left: 15px;
font-weight: bold;
}
.mentor-college {
font-size: 12px;
margin-left: 15px;
}
.mentor-job {
font-size: 14px;
margin-left: 15px;
}
.btn_aboutUs {
display: inline-block;
position: relative;
min-width: 200px;
height: 50px;
background-image: linear-gradient(315deg, #ff8dde 0%, #a88beb 74%);
border-radius: 60px;
justify-content: center;
align-items: center;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
letter-spacing: 2px;
border: 3.5px solid #7f38c6;
padding-left: 50px;
padding-bottom: 37px;
transition: 0.5s;
font-size: 20px;
padding-top: 10px;
margin-top: 30px;
}
.btn_aboutUs:hover{
padding-left: 20px;
padding-right: 40px;
color: rgba(255, 255, 255, 1);
text-decoration: none;
}
.btn_aboutUs span{
position: absolute;
left: 5px;
width: 39px;
height: 40px;
background: var(--primary-gradient-purple);
border-radius: 50%;
transition: 0.5s ease-in-out;
margin-left: -3px;
margin-top: -6px;
align-items: center;
color: var(--primary-gradient-purple);
font-size: 1.5sem;
}
.btn_aboutUs ion-icon{
padding: 10px;
color: white;
}
.btn_aboutUs:hover span{
left: calc(100% - 40px);
padding-left: -5px;
/* padding-top:5px; */
font-weight: 600;
}