-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathSiteLogos.scss
46 lines (43 loc) · 932 Bytes
/
SiteLogos.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
.site-logos {
display: flex;
align-items: center;
justify-content: space-between;
@include column-gap(24px);
flex-shrink: 0;
.logo-owid a {
@include md-up {
font-size: 20px;
}
line-height: 1.2;
color: $white;
display: block;
text-align: center;
}
.logos-wrapper {
display: none;
@include xlg-up {
display: flex;
}
@include column-gap(6px);
align-items: flex-start;
margin-top: 5px;
a {
color: white;
opacity: 0.6;
transition: color 150ms ease;
line-height: 1;
&:hover {
opacity: initial;
}
}
.oxford-logo img {
height: 46px;
}
.gcdl-logo img {
height: 42px;
}
img {
width: auto;
}
}
}