application.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .main-content {
  2. width: 1440px;
  3. margin: auto;
  4. font-size: 14px;
  5. }
  6. .connect-container {
  7. margin: 20px 0;
  8. }
  9. .container {
  10. display: flex;
  11. }
  12. .sender, .receiver {
  13. flex: 1;
  14. }
  15. .sender {
  16. margin-right: 8px;
  17. }
  18. .receiver {
  19. margin-left: 8px;
  20. }
  21. .lines-header {
  22. height: 30px;
  23. width: 100%;
  24. box-sizing: border-box;
  25. background-color: #444;
  26. line-height: 30px;
  27. color: white;
  28. padding-left: 10px;
  29. }
  30. .lines-body {
  31. width: 100%;
  32. background-color: #222;
  33. min-height: 300px;
  34. padding: 10px 0 20px 0;
  35. }
  36. .line, .command-line {
  37. box-sizing: border-box;
  38. width: 100%;
  39. color: #f1f1f1;
  40. background-color: #222;
  41. outline: none;
  42. border: none;
  43. padding: 5px 10px;
  44. font-size: 14px;
  45. }
  46. .line:hover {
  47. background-color: #444;
  48. }
  49. .button::before {
  50. -webkit-border-radius: 3px;
  51. -moz-border-radius: 3px;
  52. -webkit-box-shadow: #959595 0 2px 5px;
  53. -moz-box-shadow: #959595 0 2px 5px;
  54. border-radius: 3px;
  55. box-shadow: #959595 0 2px 5px;
  56. content: "";
  57. display: block;
  58. left: 0;
  59. padding: 2px 0 0;
  60. position: absolute;
  61. top: 0;
  62. }
  63. .button:active::before { padding: 1px 0 0; }
  64. .button.black {
  65. background: #656565;
  66. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#656565), to(#444));
  67. background: -moz-linear-gradient(#656565, #444);
  68. background: linear-gradient(#656565, #444);
  69. border: solid 1px #535353;
  70. border-bottom: solid 3px #414141;
  71. box-shadow: inset 0 0 0 1px #939393;
  72. color: #fff;
  73. text-shadow: 0 1px 0 #2f2f2f;
  74. padding: 8px 16px;
  75. outline: none;
  76. }
  77. .button.black:hover {
  78. background: #4c4c4c;
  79. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#4c4c4c), to(#565656));
  80. background: -moz-linear-gradient(#4c4c4c, #565656);
  81. background: linear-gradient(#4c4c4c, #565656);
  82. border: solid 1px #464646;
  83. border-bottom: solid 3px #414141;
  84. box-shadow: inset 0 0 0 1px #818181;
  85. }
  86. .button.black:active {
  87. background: #474747;
  88. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#474747), to(#444));
  89. background: -moz-linear-gradient(#474747, #444);
  90. background: linear-gradient(#474747, #444);
  91. border: solid 1px #2f2f2f;
  92. box-shadow: inset 0 10px 15px 0 #3e3e3e;
  93. }