-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathmain.css
More file actions
38 lines (37 loc) · 750 Bytes
/
main.css
File metadata and controls
38 lines (37 loc) · 750 Bytes
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
/*
* SPDX-FileCopyrightText: Copyright (c) 2024-2026 Yegor Bugayenko
* SPDX-License-Identifier: MIT
*/
@import url('//fonts.googleapis.com/css?family=Inconsolata');
body {
font-family: 'Inconsolata', monospace;
font-size: 20px;
line-height: 1.3em;
padding: 1em;
}
section {
width: 32em;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.logo {
height: 128px;
width: 128px;
}
a {
text-decoration: none;
color: inherit;
background-image: linear-gradient(#000,#000);
background-position: 0 0.95em;
background-repeat: repeat-x;
background-size: 1px 1px;
}
a:visited {
color: inherit;
}
a:hover {
text-decoration: none;
background-image: linear-gradient(#268714,#268714);
background-size: 2px 2px;
}