-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoverall.css
53 lines (45 loc) · 885 Bytes
/
overall.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
@font-face {
font-family: "Moderat";
font-style: normal;
font-weight: 400;
src: url("moderat.woff2") format("woff2");
}
:root {
--color-blue: #1e1f9f;
--color-beige: #f2cecf;
}
body {
background: var(--color-blue);
font-family: "Moderat", sans-serif;
color: var(--color-beige);
padding: 0 50px;
}
body > header {
position: fixed;
top: 32px;
left: 48px;
z-index: 50;
width: calc(100% - 96px);
display: flex;
justify-content: space-between;
align-items: center;
}
body > header > div {
width: 132px;
aspect-ratio: 132 / 49;
background-image: url(./logo.svg);
}
body > header > a {
margin-top: 8px;
width: 132px;
aspect-ratio: 132 / 26;
background-image: url(./next.svg);
background-position: right;
background-repeat: no-repeat;
}
.logo-visible path {
fill: var(--color-beige);
}
.mark path {
fill: var(--color-beige);
}