-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.css
92 lines (75 loc) · 1.27 KB
/
fonts.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
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
:root {
--blue: rgba(50, 116, 191, 1);
--light-blue: rgba(115, 163, 218, 1);
--dark-blue: rgba(7, 33, 62, 1);
--hover-blue: rgba(115, 163, 218, 0.1);
}
body {
font-family: "Amulya";
font-weight: 450;
padding: 10px;
padding-left: 20px;
padding-right: 20px;
}
h2 {
font-size: 32px;
}
ul {
font-size: 1rem;
padding-left: 0px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 10px;
list-style: none;
}
.logo {
display: flex;
align-items: baseline;
}
.highlight {
background: var(--hover-blue);
}
.highlight .title {
font-weight: bold;
transition: all 0.3s;
}
.logo-image {
margin-right: 1em;
}
summary {
font-size: 18px;
opacity: 0.5;
}
li {
margin-top: 10px;
border: 1.5px dashed var(--dark-blue);
border-radius: 0.25rem;
padding: 0.5em;
transition: color 0.2s;
transition: border 0.2s;
}
li:hover {
border: 1.5px dashed var(--light-blue);
transition: all 0.3s;
}
p {
font-size: 1.1rem;
}
#href {
color: var(--blue);
transition: color 0.2s;
}
#href:hover {
color: var(--dark-blue);
}
.title {
font-variant-numeric: tabular-nums;
margin-bottom: 1em;
font-size: 1.1rem;
}
#date {
font-style: italic;
opacity: 0.5;
font-size: 0.8rem;
font-variant-numeric: tabular-nums;
}