style_shared.css 518 B

12345678910111213141516171819202122
  1. /** so I don't have to type these out every time **/
  2. /** general **/
  3. body, html {margin: 0; padding: 0;}
  4. img, iframe {max-width: 100%;}
  5. /** use with div/p **/
  6. .center {text-align: center;}
  7. .thumbnails img {
  8. object-fit: contain;
  9. max-height: 200px;
  10. width: 200px;
  11. }
  12. /** use with span **/
  13. .hover {text-decoration: underline dashed #000;}
  14. .spoiler {
  15. background: #000;
  16. border: 1px #fff solid;
  17. color: #000;
  18. padding: 1px;
  19. }
  20. .spoiler:hover {color: #fff;}
  21. /** curvy **/
  22. .curved {border-radius: 10px;}