corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 .text-layer {
2 font: 12px Monaco, "Courier New", monospace;
3 cursor: text;
4 }
5  
6 .blinker {
7 animation: blink 1s linear infinite alternate;
8 }
9  
10 @keyframes blink {
11 0%, 40% {
12 opacity: 0;
13 }
14  
15 40.5%, 100% {
16 opacity: 1
17 }
18 }