Advertisement
Sasa00

css

Feb 3rd, 2024
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.14 KB | None | 0 0
  1. html {
  2.   font-size: 62.5%;
  3. }
  4. Veldana
  5.  
  6. body {
  7.   color: black;
  8.   font-family: NotoSansJP;
  9.   font-size: 1.5rem;
  10.   letter-spacing: 0.2rem;
  11. }
  12.  
  13. img {
  14.   max-width: 100%;
  15.   position: relative;
  16.   vertical-align: bottom;
  17. }
  18.  
  19. a {
  20.   color: #000;
  21.   text-decoration: underline;
  22. }
  23.  
  24. ul {
  25.   list-style: none;
  26. }
  27.  
  28. .wrapper, .footer-box {
  29.   width: 950px;
  30.   max-width: 950px;
  31.   margin: 0 auto;
  32.   padding-top: 2rem;
  33. }
  34.  
  35. .align-center {
  36.   text-align: center;
  37. }
  38.  
  39. .color-black {
  40.   color: #333333;
  41. }
  42.  
  43. .italic {
  44.   font-style: italic;
  45. }
  46.  
  47. .main-text {
  48.   font-size: 1.2em;
  49. }
  50.  
  51. .main-text15 {
  52.   font-size: 1.4em;
  53. }
  54.  
  55. .main-text17 {
  56.   font-size: 1.7em;
  57. }
  58.  
  59. .margin-t_10 {
  60.   margin-top: 10px;
  61. }
  62.  
  63. .margin-t_5 {
  64.   margin-top: 5px;
  65. }
  66.  
  67. .margin-t_30 {
  68.   margin-top: 30px;
  69. }
  70.  
  71. .margin-t_60 {
  72.   margin-top: 60px;
  73. }
  74.  
  75. .margin-b_40 {
  76.   margin-bottom: 40px;
  77. }
  78.  
  79. .d-block {
  80.   display: block;
  81. }
  82.  
  83. .margin-center {
  84.   margin: 0 auto;
  85. }
  86.  
  87.  
  88. /*トップページ*/
  89.  
  90. .back {
  91.   background-image: url(https://surf-dream.neocities.org/mateial/wp_beach4.jpg);
  92.   background-repeat: repeat-x;
  93.   background-position: bottom;
  94.   background-color: #97C4EB;
  95.   padding: 20px 0 130px 0;
  96. }
  97.  
  98. footer {
  99.   background-color: #f6f6f3;
  100.   padding: 20px 0;
  101. }
  102.  
  103. .footer-box {
  104.   text-align: center;
  105. }
  106.  
  107. .logo {
  108.   width: 35%;
  109.   margin: 0 auto;
  110. }
  111.  
  112. .marquee {
  113.   margin: 1rem auto 0 auto;
  114.   width: 40%;
  115. }
  116.  
  117. .nav-container {
  118.   margin: 3rem;
  119. }
  120.  
  121. .nav {
  122.   display: flex;
  123.   justify-content: center;
  124.   gap: 6rem;
  125. }
  126.  
  127. .main-container {
  128.   display: flex;
  129. }
  130.  
  131. .left-container {
  132.   width: calc(100% / 3);
  133.   margin-top: 20px;
  134.   text-align: right;
  135. }
  136.  
  137. .right-container {
  138.   width: calc(100% / 3);
  139.   margin-top: 20px;
  140. }
  141.  
  142. .left-h2, .right-h2 {
  143.   position: relative;
  144.   color: #E02B20;
  145.   font-style: italic;
  146. }
  147.  
  148. .left-h2.before:before {
  149.   content: url(https://surf-dream.neocities.org/mateial/creamsoda.gif);
  150.   position: absolute;
  151.   top: -134%;
  152.   left: 124px;
  153.   transform: scale(0.7);
  154.   display: inline-block;
  155. }
  156.  
  157. .right-h2.before:after {
  158.   content: url(https://surf-dream.neocities.org/mateial/012.gif);
  159.   position: absolute;
  160.   top: -80%;
  161.   left: 67px;
  162.   display: inline-block;
  163. }
  164.  
  165. .center-container {
  166.   width: 500px;
  167.   text-align: center;
  168.   margin: 0 50px;
  169. }
  170.  
  171. .center-img {
  172.   border: double 4px;
  173. }
  174.  
  175. .center-text {
  176.   font-size: .8em;
  177.   color: #515151;
  178.   margin-top: 5px;
  179.   text-align: center;
  180. }
  181.  
  182. .center-banner {
  183.   margin-top: 50px;
  184. }
  185.  
  186. .update-box {
  187.   width: 200px;
  188.   font-size: 13px;
  189.   border: solid 1px;
  190.   height: 210px;
  191.   overflow-y: scroll;
  192.   padding-bottom: 15px;
  193.   padding-left: 5px;
  194.   display: inline-block;
  195. }
  196.  
  197. .update-new:after {
  198.   content: url(https://surf-dream.neocities.org/mateial/red2.gif);
  199. }
  200.  
  201. .update-2002:before {
  202.   content: url(https://surf-dream.neocities.org/mateial/red2.gif);
  203. }
  204.  
  205. .web-clap {
  206.   display: inline-block;
  207.   padding: 5px 5px;
  208.   border: solid 1px;
  209.   border-radius: 5px;
  210.   background-color: #e2e2e2;
  211. }
  212.  
  213.  
  214. /*about・link共通*/
  215.  
  216. .about-logo {
  217.   width: 30%;
  218. }
  219.  
  220. .return-top {
  221.   display: block;
  222.   width: 6%;
  223.   margin: 10px auto 0 auto;
  224. }
  225.  
  226. .boat {
  227.   width: 13%;
  228.   margin-top: 10px;
  229. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement