-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.css
49 lines (45 loc) · 823 Bytes
/
user.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
.mpost-item {
line-height: 2;
.title {
font-size: 1.5em;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", "Manjari",
sans-serif;
}
}
header {
grid-template-columns: auto 1fr;
justify-items: end;
}
.container{
padding: 20px;
grid-template-columns: 1fr;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
align-items: stretch;
gap: 24px;
.card {
text-decoration: none;
border-radius: 4px;
padding: 8px;
background-color: var(--card-color);
.title {
margin: 0;
line-height: 1;
}
.result {
object-fit: contain;
padding: 8px;
}
svg,
img {
width: 100%;
height: 240px;
object-fit: cover;
}
.updated {
font-size: 0.8em;
}
}
}