ihanoi_style.css 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. LInE (Laboratory of Informatics in Education) - http://www.usp.br/line
  3. IME - USP
  4. iHanoi - http://www.matematica.br/ihanoi
  5. Material didático
  6. Pode usar livrevemente este material para fins não comerciais, devendo sempre fazer referência à autoria.
  7. Prof. Leônidas de Oliveira Brandão
  8. http://www.ime.usp.br/~leo
  9. http://line.ime.usp.br
  10. http://www.matemtica.br
  11. */
  12. body { margin: 10; overflow: hidden; font-family:sans; }
  13. foot { font-size:.8cm; }
  14. canvas { padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; display: block; }
  15. .fundoBotao { margin:0 auto; width: 1100px; background:url("../img/fundo1.png"); }
  16. .classeBotao1 {
  17. display: inline-block; background-color: #7b38d8; border-radius: 10px; border: 4px double #cccccc; color: #eeeeee; text-align: center; font-size: 12px; padding: 5px;
  18. width: 100px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; cursor: pointer; margin: 2px; }
  19. /*
  20. disk1: 3399ff 0066cc
  21. disk2: cc66ff 9933ff
  22. disk3: e4ee26 cdd711
  23. disk4: 29eb46 11b92b
  24. disk5: 990099 330033
  25. disk6: ff6666 cc0000
  26. */
  27. .tableBotoes { display:table; }
  28. .tableBotoes-celula { display:table-cell; }
  29. .tableBotoes-tar { text-align: left; }
  30. .classeBotaoR { background-color: #5566cc; width: 100px; }
  31. .classeBotao { display: inline-block; border-radius: 10px; border: 4px double #cccccc; color: #eeeeee; text-align: center;
  32. font-size: 12px; padding: 5px; transition: all 0.5s; cursor: pointer; margin: 2px; }
  33. .classeBotao span { cursor: pointer; display: inline-block; position: relative; transition: 0.5s; }
  34. .classeBotao span:after { content: '\00bb'; position: absolute; opacity: 0; top: 0; right: -20px; transition: 0.5s;}
  35. .classeBotao:hover span { padding-right: 25px;}
  36. .classeBotao:hover span:after { opacity: 1; right: 0; }
  37. .classeBotao1 { background-color: #0066cc; width: 80px; font-size:.7em; }
  38. .classeBotao1:hover { background-color: #3399ff; }
  39. .classeBotao2 { background-color: #9933ff; width: 80px; font-size:.7em; }
  40. .classeBotao2:hover { background-color: #cc66ff; }
  41. .classeBotao3 { color:#444444; border: 4px double #444444; background-color: #cdd711; width: 80px; font-size:.7em; }
  42. .classeBotao3:hover { background-color: #e4ee26; }
  43. .classeBotao4 { background-color: #11b92b; width: 80px; font-size:.7em; }
  44. .classeBotao4:hover { background-color: #29eb46; }
  45. .classeBotao5 { background-color: #330033; width: 80px; font-size:.7em; }
  46. .classeBotao5:hover { background-color: #990099; }
  47. .classeBotao6 { background-color: #cc0000; width: 80px; font-size:.7em; }
  48. .classeBotao6:hover { background-color: #ff6666; }