forked from erf/vis-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (52 loc) · 875 Bytes
/
style.css
File metadata and controls
63 lines (52 loc) · 875 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
*,
body {
font-weight: normal;
padding-left: 2pt;
padding-top: 2pt;
font-family: 'Courier New', Courier, monospace;
}
h1, h2 {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
ul {
list-style: none;
padding: 0px;
}
.container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 8pt;
}
.item {
padding: 6pt;
}
.name {
font-weight: bold;
}
.description {
font-style: italic;
}
.image-container {
overflow: hidden;
width: 300px;
height: 200px;
}
.image-container:hover {
transform: scale(1.2)
}
.image {
width: 300%;
height: 100%;
object-fit: cover;
}
.copy {
margin-left: 8px;
margin-bottom: 8px;
background-color: #f0f0f0;
border-radius: 1px;
border-width: 0px;
transition-duration: 0.3s;
}
.copy:hover {
background-color: #d0d0d0;
}