Skip to content

Instantly share code, notes, and snippets.

@keyframes colorhue{
from {-webkit-filter: hue-rotate(0deg); filter: hue-rotate(0deg);}
to {-webkit-filter: hue-rotate(359deg); filter: hue-rotate(359deg);}
}
.edit {
animation: colorhue 1s linear infinite;
}
include $(GOROOT)/src/Make.$(GOARCH)
all : webirc
TARG=webirc
GOFILES=main.go
include $(GOROOT)/src/Make.cmd