-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlink-styles.css
More file actions
61 lines (51 loc) · 1.29 KB
/
Copy pathlink-styles.css
File metadata and controls
61 lines (51 loc) · 1.29 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
@import url('reset.css');
@import url('styles.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body {
margin: 0;
padding: 0;
background-image: linear-gradient(to bottom, hsla(180, 73%, 23%, 0.1), transparent 25%);
}
.link {
/*border-top: solid 1px hsla(180, 73%, 23%, 0.5);
background-image: linear-gradient(to bottom, hsla(180, 73%, 23%, 0.1), transparent 25%);*/
padding: 1rem 2rem;
.combo {
display: flex;
flex-direction: row;
>* {
flex-grow: 1;
}
>p {
flex-basis: 75%;
font-size: 0.95rem;
line-height: 1.2em;
}
>.logo {
width: 25%;
flex-basis: 25%;
margin-left: 1rem;
img {
width: 100%;
max-height: 24rem;
max-width: 24rem;
object-fit: contain;
}
}
}
}
.link>a {
font-family: 'Raleway', sans-serif;
font-weight: 900;
text-decoration: none;
text-wrap: pretty;
display: block;
}
.link>a+p {
margin-top: 0;
font-size: 0.95rem;
line-height: 1.2em;
}
.nobr {
white-space: nowrap;
}