您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

106 行
1.9 KiB

  1. #home {
  2. text-align: center;
  3. .page-title {
  4. font-size: 30px;
  5. }
  6. @media (min-width: @screen-sm-min) {
  7. padding: 50px;
  8. .page-title {
  9. font-size: 45px;
  10. margin-top: -20px;
  11. margin-bottom: 10px;
  12. }
  13. }
  14. .btn-home {
  15. margin: 50px 0 25px 0;
  16. }
  17. }
  18. #web, .terminal {
  19. word-wrap: break-word;
  20. font-size: 12px;
  21. .code-title {
  22. color: @red;
  23. }
  24. padding: 25px 0 0 10px;
  25. @media (min-width: @screen-sm-min) {
  26. padding: 25px 0 0 20px;
  27. font-size: 15px
  28. }
  29. code {
  30. font-family: @font-family-mono;
  31. }
  32. font-family: @font-family-mono;
  33. text-align: left;
  34. color: #fff;
  35. .transition(all @animation-duration ease);
  36. }
  37. #web {
  38. margin-top: -2px;
  39. padding-top: 0;
  40. padding-bottom: 50px;
  41. width: 100%;
  42. display: block;
  43. background: @dark-blue;
  44. .transition(all @animation-duration ease);
  45. .btn-cta {
  46. padding: 5px 10px;
  47. font-size: 14px;
  48. border-color: #fff;
  49. }
  50. .queue {
  51. margin: 0;
  52. list-style: none;
  53. padding: 0;
  54. }
  55. a {
  56. color: #fff;
  57. }
  58. .border-bottom-radius (5px);
  59. }
  60. .dragged {
  61. background: lighten(@dark-blue, 5%)!important;
  62. }
  63. .terminal {
  64. .border-top-radius (0);
  65. .border-bottom-radius (5px);
  66. background: @dark-blue;
  67. // background: url(../images/terminal.svg);
  68. backbground-repeat: no-repeat;
  69. background-size: cover;
  70. }
  71. .terminal-top {
  72. .border-top-radius (5px);
  73. background: url(../images/terminal-top.svg);
  74. background-repeat: no-repeat;
  75. background-size: cover;
  76. height: 30px;
  77. }
  78. .upload-progress {
  79. max-width: 80%;
  80. .bar {
  81. word-wrap: normal;
  82. overflow: hidden;
  83. }
  84. span {
  85. float: right;
  86. }
  87. padding-top: 4px;
  88. }
  89. .all-files {
  90. display: none;
  91. }
  92. .all-files .show {
  93. display: block;
  94. }