-
Notifications
You must be signed in to change notification settings - Fork 0
/
talent-showcase.css
111 lines (96 loc) · 1.94 KB
/
talent-showcase.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.talent-bg-container{
background-color: white;
height: 180vh;
}
.talent-card{
background-color: #f5f8fc;
border-color: #545b6a;
border-radius: 10px;
border-style: solid;
padding: 10px;
border-width: 2px;
margin-bottom: 20px;
}
.talent-card:hover{
background-color: #f5f8fc;
border-color: #545b6a;
text-decoration: none;
border-radius: 10px;
border-style: solid;
padding: 10px;
border-width: 2px;
margin-bottom: 20px;
scale: 1.05;
}
.sm-icon-img{
height: 35px;
border-radius: 18px;
margin: 10px 0 10px 0;
}
.redirect-text{
background-color: black;
color: white;
border-radius: 10px;
margin: 10px 0 10px 0;
font-family: "Kanit";
font-size: 15px;
padding: 5px;
}
.redirect-text:hover{
background-color: black;
color: white;
border-radius: 10px;
margin: 10px 0 10px 0;
font-family: "Kanit";
font-size: 15px;
cursor: pointer;
}
.talent-card-heading{
font-size: 20px;
font-weight: bold;
font-family: "Kanit";
color: black;
}
.talent-card-img{
width: 100%;
border-radius: 10px;
}
.talent-pg-main-heading{
color: red;
}
.talent-card-bt-tools {
margin-top: 10px;
display: flex;
align-items: center;
gap: 16px;
padding: 8px 16px;
border-radius: 8px;
}
/* Icon styling */
.material-symbols-outlined {
font-size: 24px;
color: #1e3a6e; /* Light gray color for icons */
}
/* Number styling */
.icon-container {
display: flex;
align-items: center;
gap: 4px;
}
.count-text {
font-size: 16px;
color: #1e3a6e; /* Same light gray color */
}
/* Vertical divider styling */
.divider {
height: 24px;
width: 1px;
background-color: #1e3a6e;
}
a {
text-decoration: none; /* Remove underline for normal state */
color: inherit; /* Use the same color as the parent element, optional */
}
a:hover {
text-decoration: none; /* Remove underline on hover */
}