-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (78 loc) · 1.46 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (78 loc) · 1.46 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
@import url('https://fonts.cdnfonts.com/css/cabinet-grotesk');
:root {
--primary-font: 'Cabinet Grotesk', sans-serif;
--primary-font-color: #ffffff;
--primary-bg: #01010ad3;
--links-hover: #b5b5b5d3;
}
* {
margin: 0;
padding: 0;
font-family: var(--primary-font);
color: var(--primary-font-color);
background-color: var(--primary-bg);
}
body {
padding: 10px;
}
nav {
display: flex;
padding: 10px;
justify-content: end;
border-bottom: 0.5px solid var(--links-hover);
}
nav li {
display: inline-block;
margin-right: 10px;
}
a {
text-decoration: none;
display: inline-flex;
}
a p {
margin-left: 5px;
}
a img {
width: 20px;
height: 20px;
}
a p:hover {
color: var(--links-hover);
}
header {
padding: 45px 30px 30px 30px;
text-align: center;
background-image: url('assets/pattern.svg');
background-size: cover;
background-position: center;
}
#header-title {
display: inline-flex;
align-items: center;
background: none;
padding: 30px;
}
#header-title h1 {
font-size: 60px;
font-weight: bold;
margin-right: 10px;
}
#header-title img {
width: 80px;
height: 100px;
margin-left: 10px;
background-color: transparent;
}
#header-text {
font-size: 20px;
}
#header-title h1,
#header-text p {
background: none;
}
footer {
display: flex;
justify-content: center;
padding: 10px;
border-top: 0.5px solid var(--links-hover);
}