sBot.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. table {
  2. vertical-align: top;
  3. }
  4. body {
  5. background-color: #353535;
  6. color: white;
  7. font-family: "Roboto", sans-serif;
  8. text-align: center;
  9. font-size: 1vw;
  10. }
  11. a {
  12. color: #7289da;
  13. text-decoration: none;
  14. transition: color 0.4s ease-out;
  15. }
  16. a:hover {
  17. color: #b2c3ff;
  18. text-decoration: underline;
  19. transition: color 0.1s linear;
  20. }
  21. .cbox {
  22. background-color: #232323;
  23. padding: 0.5vw;
  24. border: 0.2vw solid black;
  25. border-radius: 0.7vw;
  26. }
  27. #pagewrapper {
  28. margin-top: 0.8vw;
  29. width: 50vw;
  30. display: inline-block;
  31. }
  32. #dtitle {
  33. font-size: 2vw;
  34. }
  35. #mtable {
  36. width: auto;
  37. display: inline-block;
  38. }
  39. #pfp {
  40. width: 3.2vw;
  41. margin-right: 0.5vw;
  42. /*border: 0.15vw solid black;
  43. border-radius: 0.6vw;
  44. background-color: #353535;*/
  45. }
  46. #mtable td.l {
  47. width: 1px;
  48. text-align: left;
  49. }
  50. #mtable td.r {
  51. width: 1px;
  52. text-align: center;
  53. padding-left: 1vw;
  54. }
  55. #btns {
  56. display: inline-block;
  57. }
  58. #btns tr td.l {
  59. width: 1px;
  60. text-align: right;
  61. }
  62. #btns tr td.m {
  63. width: 1px;
  64. }
  65. #btns tr td.r {
  66. width: 1px;
  67. text-align: left;
  68. }
  69. #btns button {
  70. position: relative;
  71. bottom: 0vh;
  72. background-color: #373737;
  73. color: white;
  74. border-radius: 0.35vw;
  75. border-width: 0.2vw;
  76. padding-left: 0.5vw;
  77. padding-right: 0.5vw;
  78. padding-top: 0.3vw;
  79. padding-bottom: 0.3vw;
  80. font-size: 1.5vw;
  81. transition: background-color 0.4s ease-out, bottom 0.6s ease-out;
  82. }
  83. #btns button:hover {
  84. position: relative;
  85. bottom: 0.4vh;
  86. background-color: #252525;
  87. cursor: pointer;
  88. transition: background-color 0.1s linear, bottom 0.2s ease-out;
  89. }
  90. #btns button:active {
  91. border-color: #509950;
  92. }
  93. #btns td.l button {
  94. border-color: #15aa15;
  95. }
  96. #btns td.r button {
  97. border-color: #4747ee;
  98. }
  99. ul {
  100. margin-top: 0;
  101. }
  102. li {
  103. padding-bottom: 0.3vw;
  104. }
  105. i.botprefix {
  106. text-decoration: none;
  107. font-weight: 100;
  108. font-style: normal;
  109. }