docx.css 682 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .docx, .docx-top {
  2. margin-bottom: 20px;
  3. border-radius: 10px;
  4. border-width: 2px;
  5. border-style: solid;
  6. min-width: 30em;
  7. height: 4em;
  8. line-height: 4em;
  9. }
  10. .docx {
  11. border-color: #0074D9;
  12. background-color: white;
  13. }
  14. .docx-top {
  15. border-color: #dc3023;
  16. background-color: white;
  17. }
  18. .docx a, .docx-top a {
  19. padding: 15px;
  20. color: black;
  21. text-decoration: none;
  22. }
  23. .docx a:hover, .docx-top a:hover {
  24. color: darkblue;
  25. text-decoration: none;
  26. }
  27. .markdown {
  28. background-color: white;
  29. padding: 15px;
  30. border: 2px solid #0074D9;
  31. border-radius: 10px;
  32. }
  33. .modal div {
  34. background-color: white;
  35. border-radius: 10px;
  36. }