This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
team.css
112 lines (95 loc) · 1.73 KB
/
team.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
#about p {
white-space: pre-wrap;
margin: 0 5%;
}
#about,
#execs,
#open-positions {
max-width: 1280px;
margin: auto;
}
.exec {
width: 10rem;
overflow-x: hidden;
margin: 0.7rem;
}
.exec .pic {
height: 10rem;
width: 10rem;
background-size: contain;
background-position: center;
border-radius: 50%;
}
.exec .pic.alphabet {
font-size: 4rem;
line-height: 10rem;
letter-spacing: 0.3rem;
color: white;
font-weight: lighter;
}
.exec:nth-child(odd) .pic.alphabet {
background-color: var(--yellow);
}
.exec:nth-child(even) .pic.alphabet {
background-color: var(--green);
}
.discipline {
opacity: 0.5;
font-weight: bolder;
}
.position {
font-weight: lighter;
}
.posting {
margin: 0.5rem 5%;
}
.posting>.action {
display: block;
}
.posting>* {
padding: 1rem;
}
.posting>pre {
font-family: Lato, sans-serif;
line-height: 1.5rem;
word-wrap: normal;
white-space: pre-wrap;
/* Since CSS 2.1 */
}
.posting>summary {
box-shadow: 0 0 0.3rem gray;
cursor: pointer;
border-radius: 2px;
}
.posting .summary {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
transition: background-color 0.3s ease;
}
.posting:hover>summary {
background-color: var(--orange);
color: white;
}
details.posting summary::-webkit-details-marker {
display: none;
}
@media screen and (max-width: 589px) {
.exec {
width: 9rem;
margin: 0.5rem;
}
.exec .pic {
height: 9rem;
width: 9rem;
}
.exec .pic.alphabet {
font-size: 3.5rem;
line-height: 9rem;
}
.posting .action {
display: block;
margin-top: 0.5rem;
}
}