Compare commits

...

2 Commits

Author SHA1 Message Date
Atlas Cove a0f0001bde Added legacy.css
We now support blink tags!
2023-10-24 14:28:12 +01:00
Atlas Cove 2a28fbdd37 update pfiles.rb
added literal html support
2023-07-29 10:27:36 +01:00
2 changed files with 46 additions and 1 deletions

45
in/css/legacy.css Normal file
View File

@ -0,0 +1,45 @@
.marquee {
width: 450px;
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
}
.marquee span {
display: inline-block;
padding-left: 100%;
/* show the marquee just outside the paragraph */
animation: marquee 15s linear infinite;
}
/* Make it move */
@keyframes marquee {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0);
}
}
.blink {
animation: blink-animation 1s steps(5, start) infinite;
-webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink-animation {
to {
visibility: hidden;
}
}
.center {
text-align: center;
}

View File

@ -22,7 +22,7 @@ l=list.collect
case ARGV.first
when "doc"
for i in l do
next if ignore.include?(i)
next if ignore.include?(i) or /\.v.html/.match?(i)
if /\.(txti|org|md|html)$/.match?(i)
print i
print ' ' unless i==l.last