Ruby CGI scripts that I used to set up my website https://yessiest.512mb.org
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.

68 lines
1.1 KiB

  1. html {
  2. height:100%;
  3. }
  4. body {
  5. font-family: Helvetica, Terminus, sans-serif;
  6. margin:0;
  7. padding:0;
  8. height:100%;
  9. background-color: #007F81;
  10. }
  11. #content {
  12. padding: 25px 50px 25px 50px;
  13. }
  14. #wrapper {
  15. overflow: hidden;
  16. position: relative;
  17. width: 800px;
  18. margin: 2em auto 0 auto;
  19. background-color: #c0c0c0;
  20. box-shadow: 0 0 15px #000000;
  21. }
  22. #navbar {
  23. background-color: #aeaeae;
  24. padding: 2px 5px 2px 5px;
  25. border-style: outset;
  26. border-width: 2px;
  27. border-color: #cecece #808080 #808080 #cecece;
  28. }
  29. .nav {
  30. left: 0;
  31. display: block;
  32. margin: 0;
  33. padding: 0;
  34. list-style: none;
  35. }
  36. .nav-li {
  37. list-style: none;
  38. display: inline;
  39. border-right: 10px solid #00000000;
  40. }
  41. img {
  42. margin: 0 auto 0 auto;
  43. border-style: outset;
  44. border-width: 2px;
  45. border-color: #cecece #808080 #808080 #cecece;
  46. box-shadow: 0 0 5px #000000;
  47. }
  48. @media screen and (max-width: 800px) {
  49. #wrapper {
  50. width: 600px;
  51. }
  52. }
  53. @media screen and (max-width: 600px) {
  54. #content {
  55. padding: 0 1em 0 1em;
  56. }
  57. #wrapper {
  58. width: 95%;
  59. }
  60. }