util.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. input[type=text], input[type=number], select {
  2. width:100%;
  3. padding:6px 10px;
  4. margin:8px 0;
  5. display:inline-block;
  6. border:1px solid #ccc;
  7. border-radius:4px;
  8. box-sizing:border-box;
  9. }
  10. .main-content{
  11. text-align:left;
  12. }
  13. .show{display:block;}
  14. .hide{display:none;}
  15. #tabs {
  16. background:transparent;
  17. border:none;
  18. }
  19. #tabs .ui-widget-header{
  20. background:transparent;
  21. border:none;
  22. border-bottom:1px solid #c0c0c0;
  23. -moz-border-radius:0px;
  24. -webkit-border-radius:0px;
  25. border-radius:0px;
  26. }
  27. #tabs .ui-tabs-nav .ui-state-default{
  28. background:transparent;
  29. border:none;
  30. }
  31. #tabs .ui-tabs-nav .ui-state-active{
  32. background:transparent url('img/uiTabsArrow.png') no-repeat bottom center;
  33. border:none;
  34. }
  35. #tabs .ui-tabs-nav .ui-state-default a{
  36. color:#c0c0c0;
  37. }
  38. #tabs .ui-tabs-nav .ui-state-active a{
  39. color:#459e00;
  40. }
  41. #your-address{
  42. cursor:pointer;
  43. color:#2780e3;
  44. font-weight:bold;
  45. }
  46. #select_agent{
  47. margin-top:10px;
  48. margin-bottom:10px;
  49. }
  50. #loading{
  51. border:16px solid #f3f3f3;
  52. border-radius:50%;
  53. border-top:16px solid #3498db;
  54. width:64px;
  55. height:64px;
  56. -webkit-animation:spin 2s linear infinite;
  57. animation:spin 2s linear infinite;
  58. margin:auto;
  59. }
  60. @-webkit-keyframes spin{
  61. 0%{-webkit-transform: rotate(0deg);}
  62. 100%{-webkit-transform: rotate(360deg);}
  63. }
  64. @keyframes spin{
  65. 0%{transform:rotate(0deg);}
  66. 100%{transform:rotate(360deg);}
  67. }
  68. /* IDs for messages. Customize their style output here. */
  69. #loading_agents{}
  70. #loading_failed{}
  71. #no_commands{}
  72. #agents_offline{}
  73. #no_servers{}
  74. #invalid_server{}
  75. #invalid_steamid_admin{}
  76. #invalid_response_admin{}
  77. #invalid_immunity{}
  78. #all_servers_offline{}
  79. #addadmin_response{}
  80. #invalid_steamid{}
  81. #invalid_response{}
  82. /* IDs for the command output and network tools tab here. Customize their style here. */
  83. #options{}
  84. #output{}