game_monitor.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .monitorbutton{
  2. display: inline-block;
  3. cursor: pointer;
  4. color: #323232;
  5. transition: background-color 0.5s;
  6. -webkit-transition: background-color 0.5s;
  7. outline: 1px solid grey;
  8. width: 48%;
  9. height: 90px;
  10. background-color: #F0F0F6;
  11. vertical-align: middle;
  12. text-align: center;
  13. margin-bottom: 2%;
  14. margin-left: 1%;
  15. margin-right: 1%;
  16. max-width: 175px;
  17. float:left;
  18. }
  19. .monitorbutton.sizeText{
  20. line-height: 90px;
  21. }
  22. .monitorbutton:hover {
  23. background-color:#D9D9D9;
  24. transition: background-color 0.5s;
  25. -webkit-transition: background-color 0.5s;
  26. cursor:pointer;
  27. text-decoration:none;
  28. }
  29. .monitorbutton > img {
  30. height: 50px;
  31. margin: 5px 0px;
  32. }
  33. .monitorbutton > span {
  34. display: block;
  35. font-weight: bold;
  36. color: #000;
  37. }
  38. button:active, button[type="submit"]:active, input[type="submit"]:active, .monitorbutton tr td:active {
  39. background-color:#0F0 !important;
  40. transition: background-color 0.25s;
  41. -webkit-transition: background-color 0.25s;
  42. }
  43. #server_icon{
  44. display:block;
  45. float:left;
  46. overflow:hidden;
  47. margin:2px;
  48. margin-right:10px;
  49. padding-top:1px;
  50. padding-bottom:2px;
  51. padding-right:5px;
  52. border:1px solid gray;
  53. background:transparent;
  54. cursor:pointer;
  55. background-color:white;
  56. border-radius:3px;
  57. font-weight:bold;
  58. }
  59. #server_icon div{
  60. display:inline-block;
  61. vertical-align:middle;
  62. }
  63. .monitorButtonContainer{
  64. text-align: left; /* fallback for older IE */
  65. text-align: initial;
  66. width: 98%;
  67. padding-top: 2%;
  68. }
  69. .operations{
  70. text-align: center;
  71. }