Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. /* button style */
  2. button {
  3. /* button size */
  4. width: 100px;
  5. height: 40px;
  6. /* button border */
  7. border: 1px solid black;
  8. /* white background */
  9. background-color: white;
  10. /* this combination is for centering the button on the screen */
  11. position: absolute;
  12. transform: translate(-50%, -50%);
  13. top: 50%;
  14. left: 50%;
  15. /* removes the button backlight when clicked */
  16. outline: none;
  17. /* smooth transitions on hover */
  18. transition: all .4s ease;
  19. /* font settings */
  20. font-family: 'Arial Narrow', sans-serif;
  21. font-size: 20px;
  22. }
  23.  
  24. /* styles for button on hover */
  25. button:hover {
  26. /* type of cursor on hover */
  27. cursor: pointer;
  28. box-shadow: 4px 4px crimson;
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement