welcome.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. body {
  2. background: #fff url(../bg.png) no-repeat center bottom fixed;
  3. background-size: cover;
  4. }
  5. .welcome-header {
  6. margin-top: 10px;
  7. margin-bottom: 50px;
  8. margin-left: -10px;
  9. }
  10. .welcome-header img {
  11. width: 150px;
  12. margin-bottom: 40px;
  13. }
  14. .welcome-message {
  15. margin-top: 20px;
  16. }
  17. .h-l {
  18. min-height: 370px;
  19. padding: 10px 20px 10px;
  20. overflow: hidden;
  21. }
  22. .h-l h3 {
  23. margin-bottom: 10px;
  24. }
  25. .h-m {
  26. height: 110px;
  27. padding-top: 23px;
  28. }
  29. .card-pf img {
  30. width: 22px;
  31. margin-right: 10px;
  32. vertical-align: bottom;
  33. }
  34. img.doc-img {
  35. width: auto;
  36. height: 22px;
  37. }
  38. .link {
  39. font-size: 16px;
  40. vertical-align: baseline;
  41. margin-left: 5px;
  42. }
  43. h3 {
  44. font-weight: 550;
  45. }
  46. h3 a:link,
  47. h3 a:visited {
  48. color: #333;
  49. font-weight: 550;
  50. }
  51. h3 a:hover,
  52. h3 a:hover .link {
  53. text-decoration: none;
  54. color: #00659c;
  55. }
  56. .h-l h3 a img {
  57. height: 30px;
  58. width: auto;
  59. }
  60. .description {
  61. margin-top: 30px;
  62. }
  63. .card-pf {
  64. border-top: 1px solid rgba(3, 3, 3, 0.1);
  65. box-shadow: 0 1px 1px rgba(3, 3, 3, 0.275);
  66. }
  67. .welcome-form label,
  68. .welcome-form input {
  69. display: block;
  70. width: 100%;
  71. }
  72. .welcome-form label {
  73. color: #828486;
  74. font-weight: normal;
  75. margin-top: 18px;
  76. }
  77. .welcome-form input {
  78. border: 0;
  79. border-bottom: solid 1px #cbcbcb;
  80. }
  81. .welcome-form input:focus {
  82. border-bottom: solid 1px #5e99c6;
  83. outline-width: 0;
  84. }
  85. .welcome-form button {
  86. margin-top: 10px;
  87. }
  88. .error {
  89. color: #c00;
  90. border-color: #c00;
  91. padding: 5px 10px;
  92. }
  93. .success {
  94. color: #3f9c35;
  95. border-color: #3f9c35;
  96. padding: 5px 10px;
  97. }
  98. .welcome-form + .welcome-primary-link,
  99. .welcome-message + .welcome-primary-link {
  100. display: none;
  101. }
  102. .footer img {
  103. float: right;
  104. width: 150px;
  105. margin-top: 30px;
  106. }
  107. @media (max-width: 768px) {
  108. .welcome-header {
  109. margin-top: 10px;
  110. margin-bottom: 20px;
  111. }
  112. .welcome-header img {
  113. margin-bottom: 20px;
  114. }
  115. h3 {
  116. margin-top: 10px;
  117. }
  118. .h-l,
  119. .h-m {
  120. height: auto;
  121. min-height: auto;
  122. padding: 5px 10px;
  123. }
  124. .h-l img {
  125. display: inline;
  126. margin-bottom: auto;
  127. }
  128. .description {
  129. display: none;
  130. }
  131. .footer img {
  132. margin-top: 10px;
  133. }
  134. }