Advertisement
AnindyaBiswas

style

Nov 23rd, 2022
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.42 KB | None | 0 0
  1. .top {
  2.     font-family: 'Product Sans';
  3.     letter-spacing:1px;
  4.     text-align: center;
  5.     padding : 0.1%;
  6.     background-color: aquamarine;
  7.     border-radius: 0px 0px 30px 30px;
  8.     box-shadow: 0px 0px 10px aquamarine;
  9.     transition:0.2s;
  10.     position: fixed;
  11.     top:0px;
  12.     left:0px;
  13.     right:0px;
  14. }
  15.  
  16.     .top:hover {
  17.         background-color: #63feca;
  18.         color: white !important;
  19.         letter-spacing: 7px;
  20.         text-align: center;
  21.         transition: 0.2s;
  22.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement