minesweeper/src/main/webapp/pages/mines.css
changeset 166 e6667c8206fc
parent 164 b56bc5060fac
child 178 87d475e1cf75
     1.1 --- a/minesweeper/src/main/webapp/pages/mines.css	Fri Jun 27 15:25:21 2014 +0200
     1.2 +++ b/minesweeper/src/main/webapp/pages/mines.css	Fri Jun 27 16:14:57 2014 +0200
     1.3 @@ -51,6 +51,43 @@
     1.4      top: 0;
     1.5  }
     1.6  
     1.7 +@-moz-keyframes blinker {  
     1.8 +    0% { opacity: 0.9; }
     1.9 +    50% { opacity: 0.1; }
    1.10 +    100% { opacity: 0.9; }
    1.11 +}
    1.12 +
    1.13 +@-webkit-keyframes blinker {  
    1.14 +    0% { opacity: 0.9; }
    1.15 +    50% { opacity: 0.1; }
    1.16 +    100% { opacity: 0.9; }
    1.17 +}
    1.18 +
    1.19 +@keyframes blinker {  
    1.20 +    0% { opacity: 0.9; }
    1.21 +    50% { opacity: 0.1; }
    1.22 +    100% { opacity: 0.9; }
    1.23 +} 
    1.24 +table.MARKING td.UNKNOWN div:before {
    1.25 +    content: "\0026a0";
    1.26 +    color: #802420;
    1.27 +    
    1.28 +    -webkit-animation-name: blinker;
    1.29 +    -webkit-animation-duration: 3s;
    1.30 +    -webkit-animation-timing-function: linear;
    1.31 +    -webkit-animation-iteration-count: infinite;
    1.32 +
    1.33 +    -moz-animation-name: blinker;
    1.34 +    -moz-animation-duration: 3s;
    1.35 +    -moz-animation-timing-function: linear;
    1.36 +    -moz-animation-iteration-count: infinite;
    1.37 +
    1.38 +    animation-name: blinker;
    1.39 +    animation-duration: 3s;
    1.40 +    animation-timing-function: linear;
    1.41 +    animation-iteration-count: infinite;
    1.42 +}
    1.43 +
    1.44  table.field td.UNKNOWN {
    1.45      background-color: #D6E4E1;
    1.46      cursor: pointer;