-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathstyles.module.css
More file actions
96 lines (80 loc) · 1.31 KB
/
styles.module.css
File metadata and controls
96 lines (80 loc) · 1.31 KB
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
.sponsor {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
font-weight: normal;
margin: 0.5rem;
padding: 1rem;
flex: 0 0 18rem;
font-size: 1.2rem;
}
.leaders {
flex: 0 0 12rem;
}
.featured,
.leaders {
border: 3px solid var(--ifm-color-primary-dark);
background: white;
border-radius: 12px;
}
.featured .name {
font-size: 2rem;
padding-top: 1rem;
}
.leaders .name {
font-size: 1.2rem;
padding-top: 0.8rem;
}
.name {
color: var(--ifm-color-primary-darker);
text-align: center;
}
[data-theme="dark"] .name {
color: var(--ifm-color-primary-darkest);
}
.backers {
flex: none;
}
.backers .name:hover {
color: var(--ifm-color-primary-darker);
}
[data-theme="dark"] .backers .name {
color: var(--ifm-color-primary);
}
.featured .avatar {
border-radius: 10rem;
width: 10rem;
height: 10rem;
}
.leaders .avatar {
border-radius: 5rem;
width: 5rem;
height: 5rem;
}
.business {
}
.contributor {
}
.plain {
background-color: inherit;
border-radius: inherit;
border: inherit;
}
.backers:last-child {
display: none;
}
.backers:first-child {
display: flex;
}
@media screen and (max-width: 995px) {
.leaders {
display: none;
}
.backers:first-child {
display: none;
}
.backers:last-child {
display: flex;
}
}