blob: fb2511fce620369e35eeac556e6fa0881657abe3 (
plain) (
blame)
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
|
html, body {
height: 100%;
width: 100%;
margin: 0;
}
body {
z-index: 1;
background-position: center;
background-attachment: fixed;
}
.github-corner {
opacity: 0.4;
}
.github-corner:hover {
opacity: 1;
}
#wrapper {
height: 100%;
display: grid;
}
#itemlist {
display: inline-grid;
grid-template-columns: repeat(2, 1fr);
margin: auto;
}
@media only screen and (min-width: 600px) {
#itemlist {
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (min-width: 800px) {
#itemlist {
grid-template-columns: repeat(6, 1fr);
}
}
#itemlist {
border-radius: 6px;
background-color: rgba(0, 0, 0, .4);
font-size: 4em;
}
#itemlist>* {
padding: 15px;
margin: 0 auto;
}
/* link colors */
#itemlist a {
color: #fff;
}
#itemlist a:hover {
color: #c4c4c4;
}
|