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.

69 lines
1.1 KiB

2 years ago
  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. min-height: 100%;
  20. background-color: #c0c0c0;
  21. box-shadow: 0 0 15px #000000;
  22. }
  23. #navbar {
  24. background-color: #aeaeae;
  25. padding: 2px 5px 2px 5px;
  26. border-style: outset;
  27. border-width: 2px;
  28. border-color: #cecece #808080 #808080 #cecece;
  29. }
  30. .nav {
  31. left: 0;
  32. display: block;
  33. margin: 0;
  34. padding: 0;
  35. list-style: none;
  36. }
  37. .nav-li {
  38. list-style: none;
  39. display: inline;
  40. border-right: 10px solid #00000000;
  41. }
  42. img {
  43. margin: 0 auto 0 auto;
  44. border-style: outset;
  45. border-width: 2px;
  46. border-color: #cecece #808080 #808080 #cecece;
  47. box-shadow: 0 0 5px #000000;
  48. }
  49. @media screen and (max-width: 800px) {
  50. #wrapper {
  51. width: 600px;
  52. }
  53. }
  54. @media screen and (max-width: 600px) {
  55. #content {
  56. padding: 0 1em 0 1em;
  57. }
  58. #wrapper {
  59. width: 95%;
  60. }
  61. }