-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwho.css
99 lines (87 loc) · 1.62 KB
/
who.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
.intro {
display: flex;
justify-content: center;
font-size: 60px;
}
.text {
display: flex;
justify-content: center;
font-size: 30px;
padding-bottom: 5px;
text-align: center;
}
h2 {
font-size: 15px;
font-weight: bold;
}
.content img {
margin-bottom: 30px;
margin-top: 50px;
display: flex;
align-self: center;
box-shadow: 1px -4px 4px 0px rgba(0, 0, 0, 0.05);
max-width: min-content;
border-radius: 50%;
}
.name {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
position: relative;
}
.description {
position: absolute;
top: 50%;
bottom: 0;
left: 0;
right: 0;
color: black;
visibility: hidden;
opacity: 0;
transition: opacity 0.2s, visibility 0.2s;
}
.name:hover .description {
visibility: visible;
opacity: 1;
}
.name:hover img {
transition: 0.2s;
opacity: 0.3;
}
.managers {
display: grid;
grid-template-rows: min-content;
grid-template-columns: repeat(4, 25%);
}
.testers {
display: grid;
grid-template-rows: min-content;
grid-template-columns: repeat(2, 50%);
}
.juniorengineers,
.seniorengineers,
.ux {
display: grid;
grid-template-rows: min-content;
grid-template-columns: repeat(3, 33.3%);
}
@media screen and (max-width: 720px) {
.managers {
display: grid;
grid-template-rows: min-content;
grid-template-columns: repeat(2, 50%);
}
.testers {
display: grid;
grid-template-rows: min-content;
grid-template-columns: repeat(2, 50%);
}
.juniorengineers,
.seniorengineers,
.ux {
display: grid;
grid-template-rows: min-content;
grid-template-columns: repeat(2, 50%);
}
}