-
Notifications
You must be signed in to change notification settings - Fork 0
/
team_style.css
144 lines (144 loc) · 3.07 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* Team CSS */
.about__section {
width:960px;
margin:auto;
}
.about__section .about__slot {
width:33%;
box-sizing: border-box;
background-color:#fff;
border:0.5px dotted #ccc;
border-right:none;
border-top:none;
height:15vh;
min-height:300px;
min-width:220px;
display:inline-block;
vertical-align:top;
text-align:center;
cursor:pointer;
position:relative;
background-size:0% auto;
-webkit-transition:all 0.3s linear;
background-position:center center;
background-repeat:no-repeat;
overflow:hidden;
}
.about__slot .bioText {
opacity:0;
color:rgba(255,0,0,0);
pointer-events:none;
position:absolute;
text-align: justify;
padding: 3%;
left:0;
right:0;
width:80%;
height:0;
-webkit-transition:all 0.3s linear;
margin:auto;
}
.about__slot.bio .about__info {
top:0px;
bottom:200px;
background-color:rgba(0,0,0,0.42);
box-shadow:inset 0px -5px 10px 0 rgba(0,0,0,1);
}
.about__slot.bio .bioText {
opacity:1;
border-radius:0;
position:absolute;
top: 10%;
left:0;
right:0;
bottom:0;
width:98%;
height:235px;
color:rgba(255,255,255,1);
background-color:rgba(42,42,42,0.7);
z-index:8;
margin:auto;
font-family: "Poppins";
overflow:auto;
}
.about__slot .about__info {
position:absolute;
left:0;
bottom:0;
top:200px;
right:0;
pointer-events:none;
z-index:9;
-webkit-transition:all 0.3s linear;
}
/*BOOM */
.about__slot .headshot {
margin:auto;
margin-top:19px;
width:172px;
height:172px;
/*border:10px double #424242;*/
background-size:200px 200px;
background-position:center 15%;
border-radius:100%;
box-shadow:0px 2px 10px 2px rgba(0,0,0,0.42);
-webkit-transition:all 0.1s ease-in-out;
}
.about__slot.bio .headshot {
-webkit-filter:blur(3px);
opacity:1;
width:100%;
height:300px;
border-radius:0;
margin-top:0;
background-size:375px 375px !important;
border:0;
top:0;
left:0;
bottom:0;
right:0;
}
.about__slot .name {
font-family:"Typo Grotesk",sans-serif;
font-size: 1em;
font-weight: bold;
color:#FF0000;
margin-bottom: 0px;
-webkit-transition:all 0.3s linear;
}
.about__slot .title {
font-family:"Typo Grotesk",sans-serif;
font-size: 0.8em;
font-weight: bold;
color:#000;
-webkit-transition:all 0.3s linear;
}
.about__slot.bio .name {
color:#f5f5f5;
}
.about__section .about__slot:hover .headshot {
opacity:1;
width:100%;
height:300px;
-webkit-filter: brightness(1);
filter: brightness(1);
-webkit-filter: contrast(1.2);
filter: contrast(1.2);
border-radius:0;
margin-top:0;
background-size:325px 325px;
border:0;
top:0;
left:0;
bottom:0;
right:0;
}
.about__section .about__slot:hover .name {
color:#f5f5f5 !important;
}
.about__section .about__slot:hover .about__info {
background-color:rgba(0,0,0,0.42);
}
.bioText {
font-size: 0.7em;
}