-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
68 lines (63 loc) · 1.13 KB
/
styles.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
body {
background-color: #223341;
overflow-x: hidden;
}
label {
color: white;
text-transform: uppercase;
margin-left: 1em;
font-family: sans-serif;
font-size: 1.5em;
}
.search_hidden, .platform_hidden {
display: none;
}
#title-text, #subtitle-text {
text-align: center;
color: white;
text-transform: uppercase;
font-family: sans-serif;
font-size: 3em;
}
#subtitle-text {
font-size: 2em;
}
#searcher {
margin-left: 3em;
margin-bottom: 2em;
font-size: x-large;
}
#masonry-container {
columns: 3 auto;
column-gap: 1rem;
}
@media only screen and (min-width: 600px) {
#masonry-container {
columns: 4 auto;
column-gap: 1rem;
}
}
@media only screen and (min-width: 768px) {
#masonry-container {
columns: 5 auto;
column-gap: 1rem;
}
}
@media only screen and (min-width: 992px) {
#masonry-container {
columns: 6 auto;
column-gap: 1rem;
}
}
#masonry-container img {
display: inline-block;
border-radius: 7%;
width: 100%;
margin: 0.5em;
max-width: 30vw;
transition: filter 0.5s;
filter: saturate(10%) brightness(0.6);
}
#masonry-container img:hover {
filter: none;
}