style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. html{
  2. background-image: url(../img/backgrounds/38ee005410119812a02be987ba6536b0.gif);
  3. color: #FCFCFC;
  4. font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  5. }
  6. header{
  7. text-align: center;
  8. font-family: "Wayfarer's Toy Box";
  9. padding-top: 10px;
  10. }
  11. main {
  12. display: flex;
  13. flex-wrap: nowrap;
  14. flex-direction: row;
  15. justify-content: center;
  16. align-items: flex-start;
  17. }
  18. #center{
  19. display: flex;
  20. flex-direction: column;
  21. width: 528px;
  22. }
  23. nav{
  24. flex-shrink: 1;
  25. font-size: 1.5rem;
  26. }
  27. .navi{
  28. list-style-type: none;
  29. margin-bottom: 1.2rem;
  30. margin-right: 2rem;
  31. padding: 0px 6px 2px 6px;
  32. background-color: #303030;
  33. text-align: center;
  34. border-style: solid;
  35. border-color: #E0E0E0;
  36. border-width: 2px;
  37. border-radius: 25px;
  38. flex-shrink: 1;
  39. }
  40. a{
  41. text-decoration: none;
  42. color: #FCFCFC;
  43. }
  44. a:hover{
  45. text-decoration: none;
  46. color: purple;
  47. }
  48. a:visited{
  49. text-decoration: none;
  50. color: #FCFCFC;
  51. }
  52. .blurb{
  53. width: 528px;
  54. background-color: #303030;
  55. font-size: 1.2rem;
  56. border-style: solid;
  57. border-color: #E0E0E0;
  58. border-radius: 25px;
  59. border-width: 2px;
  60. padding: 10px;
  61. }
  62. #blinkies{
  63. flex-shrink: 1;
  64. display: flex;
  65. flex-direction: column;
  66. margin-left: 2rem;
  67. width: 150px;
  68. }
  69. #buttons{
  70. display: flex;
  71. flex-wrap: wrap;
  72. justify-content: flex-start;
  73. }
  74. #buttons>img{
  75. width: 88px;
  76. height: 31px;
  77. }
  78. #stamps{
  79. display: flex;
  80. flex-wrap: wrap;
  81. justify-content: flex-start;
  82. gap: 8px;
  83. }
  84. #stamps>img{
  85. width: 99px;
  86. height: 56px;
  87. }
  88. #social-container{
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: center;
  92. margin-bottom: 20px;
  93. }
  94. .social-item{
  95. display: flex;
  96. flex-direction: row;
  97. align-items: center;
  98. }
  99. .social-item > p{
  100. background-color: rgba(0, 0, 0, 0.4);
  101. padding: 3px;
  102. margin: 0;
  103. color: yellow;
  104. }
  105. .social-item > img{
  106. width: 88px;
  107. height: 31px;
  108. }