blob: 42fdfb6074506acb91cdfc23676e66faa90e0fbe (
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
|
html {
scroll-behavior: smooth;
overflow: scroll;
overflow-x: hidden;
}
body {
max-width: 58em;
}
img {
border-radius: 5px;
}
#random-image {
img {
height: 20em;
}
a:hover {
border-bottom: none;
}
}
::-webkit-scrollbar {
width: 0px;
background: transparent;
}
.image-rack {
text-align: center;
list-style-type: none;
}
#image-rack-item {
display: inline;
padding: 10px;
a:hover {
border-bottom: none;
}
img {
width: 20%;
transition: 0.25s;;
}
img:hover {
opacity: 0.75;
width: 25%;
}
}
|