forked from rubycentral/rubycentral-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsponsors.css
More file actions
58 lines (53 loc) · 1.11 KB
/
sponsors.css
File metadata and controls
58 lines (53 loc) · 1.11 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
.sponsors {
background-color: white;
box-shadow: 0px 4px 13px 0px rgba(167, 167, 167, 0.3);
border-radius: 0 0 12px 12px;
padding: 0;
margin: 30px 0;
.sponsors__title {
background-color: var(--color-red);
border-radius: 12px 12px 0 0;
color: white;
margin: 0;
padding: 36px 20px;
text-align: center;
}
}
.sponsors__inner {
display: flex;
flex-direction: column;
column-gap: 60px;
row-gap: 20px;
padding: 60px 20px;
a {
text-decoration: none;
border-bottom: 0;
background-image: none;
box-shadow: none;
}
img {
height: 60px;
max-width: 100%;
object-fit: contain;
}
}
@media (min-width: 834px) {
.sponsors {
.sponsors__title {
font-size: 1.125rem;
line-height: 1.75rem;
}
}
.sponsors__inner {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
}
@media (min-width: 1440px) {
.sponsors {
.sponsors__title {
font-size: 1.5rem;
}
}
}