Advertisement
izuemis

munequita css for horizontal scrollbox

Feb 19th, 2023
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. .boxes { /* scrollboxes with info dont change width and height */
  2. width: 10em;
  3. border: 1px solid #8ba9da;
  4. border-radius: 5px;
  5. white-space: normal;
  6. display: inline-block;
  7. height: 10em;
  8. padding: .5em;
  9. font-size:.8em;
  10. vertical-align: middle;
  11. margin-right: .5em;
  12. background: rgba(255, 255, 255, 0.8);
  13. overflow-y: scroll;
  14. text-align: left;
  15. font-family: 'Outfit', sans-serif;
  16. }
  17.  
  18. mark {/* mark thing for subtitles, you can change basically anything here */
  19. background: rgba(139, 169, 218, 1);
  20. background: radial-gradient(circle, rgba(139, 169, 218, 1) 0%, rgba(255,255,255,1) 100%);
  21. border: 1px solid #8ba9da;
  22. border-radius:90%;
  23. padding-left:10px;
  24. padding-right:10px;
  25. font-family:chick;
  26. font-size:1.5em;
  27. color:white;
  28. -webkit-text-stroke: 0.5px #8ba9da;
  29. }
  30.  
  31. a { /* links, you can change the text deco or erase it */
  32. color: #8ba9da;
  33. text-decoration: underline;
  34. text-decoration-style: dotted;
  35. font-weight:bold;
  36. }
  37.  
  38. a:hover {color: #8ba9da;
  39. transition: .6s;}
  40. a { color: #8ba9da; }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement