main.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*************************************************
  2. ** Main styles
  3. *************************************************/
  4. .component {
  5. }
  6. .custom-component {
  7. width: auto;
  8. height: auto;
  9. }
  10. .default-background {
  11. background-color: #61da10;
  12. }
  13. /*************************************************
  14. ** Container Styles
  15. *************************************************/
  16. .box .hbox .vbox {
  17. width: auto;
  18. height: auto;
  19. padding: 5px 5px;
  20. background-color: #61da10;
  21. }
  22. /*************************************************
  23. ** Label Styles
  24. *************************************************/
  25. .label {
  26. width: auto;
  27. height: auto;
  28. font-size: 48px;
  29. font-family: Arial, Helvetica, sans-serif;
  30. font-name: "fonts/Avdira.ttf";
  31. color: white;
  32. /* text-align: center; */
  33. }
  34. /*************************************************
  35. ** Image Styles
  36. *************************************************/
  37. .image {
  38. width: auto;
  39. height: auto;
  40. }
  41. /*************************************************
  42. ** Specific
  43. *************************************************/
  44. #buttonBox {
  45. /* background-color: green;*/
  46. background-image: "images/parchment.png";
  47. background-image-repeat: stretch;
  48. background-color: #61da10;
  49. }
  50. #splash {
  51. background-image: "../myTheme/images/hong_kong.jpg";
  52. background-image-repeat: stretch;
  53. background-color: #61da10;
  54. }
  55. #haxelogo {
  56. opacity: 0;
  57. }
  58. #haxeui {
  59. opacity: 0;
  60. }
  61. /*************************************************
  62. ** Animations
  63. *************************************************/
  64. @keyframes fade {
  65. 0% {
  66. opacity: 0;
  67. }
  68. 100% {
  69. opacity: 1;
  70. }
  71. }
  72. .fadeIn {
  73. animation: fade 5s ease 0s 1;
  74. }
  75. .fadeOut {
  76. animation: fade 2s ease 0s 1 reverse backwards;
  77. }