forked from GitHub/dbot
commit
46028d6019
23
public/flash.css
Normal file
23
public/flash.css
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
body { background: #000; font-family: sans-serif }
|
||||||
|
|
||||||
|
.stamp {
|
||||||
|
text-align: center;
|
||||||
|
color: #FFF;
|
||||||
|
font-size: 12em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flash {
|
||||||
|
text-decoration: blink;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes blink {
|
||||||
|
from { opacity: 1.0; }
|
||||||
|
to { opacity: 0.0; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.flash {
|
||||||
|
-webkit-animation-name: blink;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
|
||||||
|
-webkit-animation-duration: 1s;
|
||||||
|
}
|
@ -2,7 +2,10 @@
|
|||||||
html(lang='en')
|
html(lang='en')
|
||||||
head
|
head
|
||||||
meta(charset='utf-8')
|
meta(charset='utf-8')
|
||||||
link(rel='stylesheet', type='text/css', href='/styles.css')
|
link(rel='stylesheet', type='text/css', href='/flash.css')
|
||||||
title #{name} web interface
|
title #{name} web interface
|
||||||
body
|
body
|
||||||
div.container
|
div.container
|
||||||
|
div.stamp [
|
||||||
|
span.flash(style='color: #'+colour+';') #{text}
|
||||||
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user