-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam-style.css
127 lines (111 loc) · 2.22 KB
/
team-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
126
127
* {
font-family: Nunito, sans-serif;
}
.text-blk {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
line-height: 25px;
}
.responsive-cell-block {
min-height: 75px;
}
.responsive-container-block {
min-height: 75px;
height: fit-content;
width: 100%;
display: flex;
flex-wrap: wrap;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
justify-content: space-evenly;
}
.outer-container {
padding-top: 10px;
padding-right: 50px;
padding-bottom: 10px;
padding-left: 50px;
background-color: rgb(244, 252, 255);
}
.inner-container {
max-width: 1320px;
flex-direction: column;
align-items: center;
margin-top: 50px;
margin-right: auto;
margin-bottom: 50px;
margin-left: auto;
}
.section-head-text {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 5px;
margin-left: 0px;
font-size: 35px;
font-weight: 700;
line-height: 48px;
color: rgb(0, 135, 177);
margin: 0 0 10px 0;
}
.section-subhead-text {
font-size: 19px;
color: rgb(153, 153, 153);
line-height: 35px;
max-width: 900px;
text-align: center;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 60px;
margin-left: 0px;
}
.img-wrapper {
width: 100%;
}
.team-card {
display: flex;
flex-direction: column;
align-items: center;
}
.social-media-links {
width: 125px;
display: flex;
justify-content: space-between;
}
.name {
font-size: 25px;
font-weight: 700;
color: rgb(102, 102, 102);
margin-top: 0px;
margin-right: 0px;
margin-bottom: 5px;
margin-left: 0px;
}
.position {
font-size: 25px;
font-weight: 700;
color: rgb(0, 135, 177);
margin-top: 0px;
margin-right: 0px;
margin-bottom: 50px;
margin-left: 0px;
}
.team-img {
width: 100%;
height: 100%;
border-radius: 300px;
}
.team-card-container {
width: 280px;
margin: 0 0 40px 0;
}
@media (max-width: 500px) {
.outer-container {
padding: 10px 20px 10px 20px;
}
.section-head-text {
text-align: center;
}
}