Advertisement
outerspec

Solid Shadow Stylesheet

Dec 8th, 2023 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. /* based off of code by eggramen on neocities: https://eggramen.neocities.org/code/css_testpages */
  2.  
  3. tw-story {
  4.   font-size: 15px;
  5.   background: #031200 url("https://nonexistentfandomsfandom.neocities.org/backgrounds/orange.png") fixed; /*Replace with your own background*/
  6.     color: black
  7.     }
  8.    
  9. code {
  10.   font-family: serif;
  11.   }
  12.  
  13. tw-passage {
  14.   background: white;
  15.   border: 2px solid black;
  16.   width: 100%;
  17.   padding:15px;
  18.   /*The 7px is vertical and horizontal offset for the shadow, if you want to change it.*/
  19.   box-shadow: 7px 7px rgb(0, 0, 0, 0.78);
  20.   }
  21.  
  22. /*Prevent overflow of large images*/
  23. tw-passage img {
  24.   max-width: 100%;
  25.   height: auto;
  26.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement