Advertisement
lemontreess

Everskies CSS

May 6th, 2024 (edited)
746
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. /* Basics: background and theme colors!*/
  2.  
  3. /* Background! Change the link between the ("") to change the image. If you want the image to fit differently in the background you can change the word "cover", to "contain" or "fill"*/
  4. div.background{
  5.    content: url("https://images.unsplash.com/photo-1562633243-28d2b1556b13?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  6.    object-fit: cover;
  7. }
  8.  
  9. /* These are for the color of the different buttons! "Background" controls the color of the box, "color" controls the color of the text, and "border-color" is the border color. Change the hexcode (the numbers after the #) to change the color. Right now its just set to black.*/
  10. .bg5, .b5, div.box-title{
  11.    background: #000000 !important;
  12.    border-color: #000000 !important;
  13.    color: #000000 !important;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement