style.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #changeIntro {
  2. position: relative;
  3. padding: 25px 32px 32px 32px;
  4. min-height: 100%;
  5. h1 {
  6. font-size: 22px;
  7. margin-bottom: 20px;
  8. }
  9. table {
  10. border: 1px solid #ccc;
  11. caption {
  12. text-align: left;
  13. font-size: 16px;
  14. margin-bottom: 10px;
  15. }
  16. tbody {
  17. tr {
  18. th, td {
  19. text-align: left;
  20. font-size: 14px;
  21. font-weight: normal;
  22. padding: 12px 13px;
  23. }
  24. th {
  25. background: #f9f9f9;
  26. border: 1px solid #ccc;
  27. }
  28. td {
  29. border-bottom: 1px solid #ccc;
  30. }
  31. }
  32. }
  33. tfoot {
  34. background: #fbfbfb;
  35. tr {
  36. td {
  37. text-align: center;
  38. padding: 8px;
  39. button, a {
  40. padding: 6px 20px;
  41. }
  42. .btn-delete {
  43. background-color: #e6f4fa;
  44. color: #333;
  45. border: 1px solid #b3b3b3;
  46. -webkit-box-shadow: inset 0 -1px 0 0 #b3b3b3;
  47. box-shadow: inset 0 -1px 0 0 #b3b3b3;
  48. &:hover {
  49. background-color: #c6e7f3;
  50. }
  51. }
  52. }
  53. }
  54. }
  55. }
  56. dl {
  57. background-color: #f1f1f1;
  58. border: 1px solid #ccc;
  59. line-height: 1.5;
  60. padding: 15px 16px 12px 16px;
  61. dt, dd {
  62. font-size: 14px;
  63. }
  64. dt {
  65. font-weight: bold;
  66. margin-bottom: 7px;
  67. }
  68. dd {
  69. ol {
  70. list-style: disc;
  71. padding: 0 20px;
  72. }
  73. }
  74. }
  75. blockquote {
  76. line-height: 1.9;
  77. }
  78. }