index.css 603 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .docx {
  2. margin-bottom: 20px;
  3. border-radius: 10px;
  4. border: 2px solid #0074D9;
  5. background-color: white;
  6. padding: 15px;
  7. }
  8. .docx a, .msg .msg-title {
  9. color: black;
  10. text-decoration: none;
  11. }
  12. .docx a:hover {
  13. color: darkblue;
  14. text-decoration: none;
  15. }
  16. .msg {
  17. margin-bottom: 20px;
  18. border-radius: 10px;
  19. border: 2px solid #FFDC00;
  20. padding: 15px;
  21. background-color: white;
  22. }
  23. .introduce {
  24. margin-bottom: 20px;
  25. border-radius: 10px;
  26. border: 2px solid #3D9970;
  27. padding: 15px;
  28. background-color: white;
  29. }
  30. .introduce p{
  31. text-indent: 2em;
  32. }