-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·129 lines (103 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·129 lines (103 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@font-face {
font-family: "HappyTimes";
src: url("/static/happy-times.woff");
}
body {
background-color: white;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
font-family: 'Verdana', sans-serif;
font-size: 70%;
list-style: square;
}
article {
font-size: 110% !important;
}
main {
width: 600px;
/* margin-inline: auto; */
padding-bottom: 6em;
}
footer {
width: 300px;
margin-inline: auto;
}
header {
display: flex;
& img {
padding-top: 15em;
}
& svg {
width: 100%;
}
}
img, .footer-vid {
max-width: 100%;
height: auto;
display: block;
padding-block: 1em;
}
figure {
margin: 0;
padding-bottom: 1em;
}
svg{
font-family: MyCustom;
}
li {
display: flex;
padding-block: 2px;
}
.desc {
margin-left: auto;
padding-right: 20px;
}
.listing a {
cursor: url("/static/open.svg"), pointer;
}
/* .sidebar { */
/* animation: linear ob 1s; */
/* overflow: hidden; */
/* } */
/* @keyframes ob { */
/* 0% { height: 0; } */
/* 100% { height: 224px; } */
/* } */
.listing a:hover{
background-color: bisque;
}
.clip {
-webkit-clip-path: url(#clip);
clip-path: url(#clip);
position: absolute;
z-index: 1;
max-width: 600px;
object-fit: cover;
height: 100%;
width: 100%;
opacity: 0;
}
.clip.show {
opacity: 1;
}
figcaption {
padding-inline: 1px;
}
#fallback {
filter: brightness(0%);
animation: brightness-animation 0.5s ease-in-out forwards;
}
@keyframes brightness-animation {
from {
filter: brightness(0%);
}
to {
filter: brightness(100%);
}
}
.hd-text {
font-family: "HappyTimes";
letter-spacing: -.045em;
}