You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 624B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* CSS for tr3y.io */
  2. body {
  3. font-family: sans-serif;
  4. max-width: 42em;
  5. }
  6. a.button {
  7. margin: 5px;
  8. border: 1px solid #999;
  9. border-radius: 2px;
  10. padding: 4px;
  11. background-color: #bbb;
  12. text-decoration: none;
  13. color: #000;
  14. }
  15. a.button:link, a.button:visited, a.button:hover, a.button:active {
  16. color: #000;
  17. }
  18. h1 {
  19. border-bottom: 2px solid black;
  20. }
  21. h2 {
  22. border-bottom: 1px solid #999;
  23. }
  24. h3 {
  25. border-bottom: 1px solid #aaa;
  26. }
  27. h4 {
  28. border-bottom: 1px dotted #aaa;
  29. }
  30. img.iconthumb {
  31. margin: 0.5em;
  32. border: 2px solid #222;
  33. border-radius: 0.5em;
  34. width: 30%;
  35. }