forked from Koustav-Sanyal/MainSite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
alumnistyle.css
113 lines (106 loc) · 2.04 KB
/
alumnistyle.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
112
113
.heading {
text-align: center;
}
.heading hr {
border: 0.5px solid rgba(50, 51, 51, 0.4);
margin-top: 0px;
margin-bottom: 60px;
width: 30%;
}
.row {
display: flex;
flex-wrap: wrap;
}
.stack {
margin-top: 4rem;
}
.team_header {
text-align: center;
border: 2px solid #12489E;
border-radius: 15px;
margin-bottom: 45px;
}
.team_header p {
font-size: 3rem;
font-weight: 500;
color: black;
padding: 10px;
}
.alumniCard {
/* height: 380px; */
margin-bottom: 50px;
}
.alumniCard2 {
height: 100%;
border-radius: 15px;
transition-property: all;
transition-duration: 0.8s;
/* box-shadow: 2px 2px 8px rgba(227,154,49,0.4),-2px -2px 8px rgba(227,154,49,0.3); */
/* box-shadow: 2px 2px 10px rgba(0,0,0,0.3),-3px -3px 10px rgba(0,0,0,0.3); */
}
.alumniCard2:hover {
box-shadow: 2px 2px 12px rgba(50, 51, 51, 0.3), -2px -2px 12px rgba(50, 51, 51, 0.3);
transform: scale(1.08);
}
.alumniCard img {
height: 260px;
width: 100%;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.content {
text-align: center;
}
strong h3 {
margin-top: 15px;
margin-bottom: 0;
padding-bottom: 0px;
font-size: 23px;
font-family: 'montserrat' , sans-serif;
line-height: 1.5;
}
.socialIcons {
display: flex;
justify-content: space-around;
margin-top: 10px;
}
.socialIcons .social-group li a .fa-facebook-f {
color: #3b5998;
}
.socialIcons .social-group li a .fa-linkedin {
color: #00a0dc;
}
.socialIcons .social-group li a .fa-instagram {
color: #c13584;
}
.socialIcons .social-group li a .fa-envelope {
color: rgba(227, 154, 49, 0.6)
}
.socialIcons .social-group li a:hover {
color: #e39a31;
}
.socialIcons .social-group li a:hover i {
color: inherit;
}
.carousel {
background: #eee;
}
.carousel-cell {
width: 66%;
height: 65vh ;
margin-right: 10px;
border-radius: 5px;
counter-increment: gallery-cell;
}
.carousel-cell img {
height: 100%;
width: 100%;
}
footer{
margin-top: 60px;
}
@media only screen and (max-width: 768px){
.alumniCard2:hover {
transform: scale(1.01);
}
}