-
Notifications
You must be signed in to change notification settings - Fork 1
/
team.scss
106 lines (97 loc) · 1.88 KB
/
team.scss
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
.about__section {
width:80%;
margin: 0 auto;
}
.about__slot {
width:25%;
box-sizing: border-box;
background-color:#f5f5f5;
border-right:none;
border-top:none;
height:15vw;
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 .about__info {
position:absolute;
left:0;
bottom:0;
top:210px;
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;
border:0;
top:0;
left:0;
right:0;
}
.about__slot .name {
font-family:"Typo Grotesk",sans-serif;
font-size:20px;
font-weight:800;
color:#424242;
margin-bottom:0px;
-webkit-transition:all 0.3s linear;
}
.about__slot .title {
font-family:"Typo Grotesk",sans-serif;
font-size:16px;
font-weight:300;
margin-top:5px;
color:#ccc;
-webkit-transition:all 0.3s linear;
}
.about__slot.bio .name {
color:#f5f5f5;
}
.about__slot:hover .headshot {
opacity:1;
width:100%;
height:300px;
border-radius:0;
margin-top:0;
background-size:325px 325px;
border:0;
top:0;
left:0;
right:0;
}
.about__section .about__slot:hover .name {
color:#f5f5f5;
}
.about__section .about__slot:hover .about__info {
background-color:rgba(0,0,0,0.42);
}