-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathstyles.module.css
More file actions
65 lines (57 loc) · 994 Bytes
/
styles.module.css
File metadata and controls
65 lines (57 loc) · 994 Bytes
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
.byline {
border-top: 1px rgb(230, 230, 230) solid;
font-size: 1.6rem;
}
.listResourcesContainer {
color: #4f4b50;
font-size: 1.8rem;
}
.relativePos {
position: relative;
}
.resourceTooltip {
font-size: 1.6rem;
z-index: 200; /* higher than .modalContainer's z-index (100) */
}
.sortContainer {
display: flex;
padding-top: 20px;
padding-bottom: 30px;
}
.sortContainer input {
margin-left: 20px;
margin-right: 5px;
}
.tileImg {
border-radius: 2px;
float: right;
max-height: 100%;
object-fit: contain;
width: 100%;
}
.tileInner {
cursor: pointer;
margin: 5px 10px 5px 10px;
}
.tileName {
background: rgba(0, 0, 0, 0.7);
border-radius: 3px;
color: white;
font-size: 21px;
font-weight: 500;
left: 20px;
padding: 10px 20px 10px 10px;
position: absolute;
top: 15px;
}
@media (max-width: 768px) {
.tileName {
font-size: 22px;
}
}
.tileOuter {
background-color: #ffffff;
padding: 0;
overflow: hidden;
position: relative;
}