forked from AryanVBW/HackSquad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (105 loc) · 1.99 KB
/
style.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
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&display=swap');
* {
font-family: 'Nunito', sans-serif;
box-sizing: border-box;
}
body {
margin: 0;
}
.text-blk {
margin: 0;
line-height: 1.4;
}
.responsive-cell-block {
min-height: 75px;
}
.responsive-container-block {
min-height: 75px;
height: fit-content;
width: 100%;
display: flex;
flex-wrap: wrap;
margin: 0 auto;
justify-content: space-evenly;
}
.outer-container {
padding: 10px 50px;
background-color: rgb(244, 252, 255);
}
.inner-container {
max-width: 1320px;
flex-direction: column;
align-items: center;
margin: 50px auto;
}
.section-head-text {
font-size: 35px;
font-weight: 700;
line-height: 1.4;
color: rgb(0, 135, 177);
margin-bottom: 10px;
text-align: center;
}
.section-subhead-text {
font-size: 25px;
color: rgb(153, 153, 153);
line-height: 1.4;
max-width: 470px;
text-align: center;
margin-bottom: 60px;
}
.img-wrapper {
width: 100%;
overflow: hidden; /* Ensure image stays within container */
}
.team-card {
display: flex;
flex-direction: column;
align-items: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.team-card:hover {
transform: translateY(-5px);
}
.social-media-links {
width: 125px;
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.name {
font-size: 25px;
font-weight: 700;
color: rgb(102, 102, 102);
margin-bottom: 5px;
}
.position {
font-size: 25px;
font-weight: 700;
color: rgb(0, 135, 177);
margin-bottom: 20px;
}
.team-img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 50%;
}
.team-card-container {
width: 280px;
margin-bottom: 40px;
}
.team-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}
@media (max-width: 500px) {
.outer-container {
padding: 10px 20px;
}
}