-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (79 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (79 loc) · 1.57 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#container {
min-height: calc(100vh - 50px);
}
#container #content h2 {
text-align: center;
}
#container #content > h3 {
margin: 8px auto;
max-width: 1200px;
padding-left: 5px;
}
#container #content .gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1200px;
margin: auto;
}
#container #content .gallery a {
display: block;
margin-bottom: 2%;
border-radius: 15px;
width: 49%;
background-color: #F8F8F8;
}
#container #content .gallery a img {
transition: object-position 0.7s;
margin: 5px 5px 0;
border-radius: 12px;
width: calc(100% - 10px);
aspect-ratio: 16/9;
object-fit: cover;
object-position: top;
}
#container #content .gallery a img.website-logo {
object-fit: contain;
object-position: unset !important;
background-color: #fff;
}
#container #content .gallery a h3, #container #content .gallery a p {
margin-inline: 10px;
}
#container #content .gallery a:hover img {
object-position: bottom;
}
@media (max-width: 1200px) {
#container #content .gallery, #container #content h3 {
margin-inline: 10px;
}
}
a {
text-decoration: none;
color: #212529;
}
header {
box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1019607843), 0 5px 10px rgba(0, 0, 0, 0.0745098039);
text-align: center;
}
header .warning {
display: block;
padding-block: 12px;
background-color: #fdf24d;
}
header h3 {
margin: unset;
padding-block: 20px;
}
footer {
border-top: 1px solid #d2d2d2;
padding-block: 15px;
text-align: center;
}
footer a {
margin-inline: 8px;
}
body {
margin: 0;
font-family: sans-serif;
}