2021的特普通奖
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

157 lines
2.3 KiB

  1. body {
  2. background: #fff url('/ordinary/static/img/bg.jpg') repeat-x fixed center top / 650px;
  3. font-family: 'Noto Sans SC', sans-serif;
  4. font-weight: 300;
  5. }
  6. .container {
  7. overflow: hidden;
  8. min-height: 100vh;
  9. }
  10. .user-info {
  11. position: fixed;
  12. top: 0;
  13. right: 0;
  14. z-index: 1030
  15. }
  16. .user-info:not(:hover) div:not(.show) .username{
  17. display: none;
  18. }
  19. .story-card {
  20. display: inline-block;
  21. margin: 0 30px 45px;
  22. max-width: 20rem;
  23. vertical-align: top;
  24. }
  25. .card-img-top {
  26. margin: 5% 25%;
  27. width: 50%;
  28. }
  29. h1, h2, h3, h4, h5 {
  30. font-family: 'Noto Serif SC', serif;
  31. }
  32. h4, h5, b {
  33. font-weight: 700;
  34. }
  35. a, a:hover,
  36. .btn-link, .btn-link:hover {
  37. color: inherit;
  38. text-decoration: underline;
  39. }
  40. a:focus, .btn-link:focus {
  41. box-shadow: none;
  42. }
  43. .btn-lg {
  44. font-family: 'Noto Serif SC', serif;
  45. }
  46. .part1 {
  47. max-width: 500px;
  48. float: left;
  49. padding-right: 10px;
  50. position: relative;
  51. }
  52. .part2 {
  53. min-width: 250px;
  54. overflow: hidden;
  55. padding-left: 25px;
  56. position: relative;
  57. }
  58. .qbox {
  59. border: 2px black solid;
  60. background: white;
  61. padding: 5px;
  62. color: black;
  63. margin: 5px 5px 40px;
  64. min-width: 250px;
  65. min-height: 300px;
  66. }
  67. #answerLogin input {
  68. border: none;
  69. border-bottom: 1px solid;
  70. border-radius: 0;
  71. }
  72. #answerLogin {
  73. border: 1px #f0f0f0 solid;
  74. padding: 5px;
  75. }
  76. .timeago {
  77. font-size: 0.5em;
  78. margin-right: 10px;
  79. }
  80. .behind {
  81. z-index: 98;
  82. cursor: pointer;
  83. transform: translateY(5px) scale(0.98);
  84. transform-origin: top;
  85. transition-property: transform;
  86. transition-duration: 0.5s;
  87. }
  88. .front {
  89. z-index: 99;
  90. transition-property: transform;
  91. transition-duration: 0.5s;
  92. }
  93. .create-paragraph {
  94. position: absolute;
  95. top: 0;
  96. right: 0;
  97. margin: 0 0 30px 20px;
  98. width: 90%;
  99. background: #000;
  100. color: #fff;
  101. }
  102. .create-paragraph textarea {
  103. border: none;
  104. border-radius: 0;
  105. border-bottom: 2px solid;
  106. background: black;
  107. color: white;
  108. }
  109. .paragraph-list {
  110. position: relative;
  111. margin: 30px 20px 30px 0;
  112. }
  113. .show-mask {
  114. display: block;
  115. position: absolute;
  116. top: 20px;
  117. right: 35px;
  118. text-align: center;
  119. padding-top: 330px;
  120. width: 100%;
  121. z-index: 999;
  122. }
  123. .footer {
  124. background: black;
  125. color: white;
  126. text-align: center;
  127. font-size: 80%;
  128. border-top: solid 1px white;
  129. }
  130. .footer p {
  131. margin: 10px 0 0;
  132. float: bottom;
  133. }