Advertisement
Guest User

Untitled

a guest
May 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. text{
  2. font-weight:bold;
  3. font-size:20px;
  4. }
  5. .big{
  6. font-size:35px;
  7. }
  8.  
  9. li{
  10. font-size:18px;
  11. }
  12.  
  13. button {
  14. display: inline-block;
  15. font-family: arial,sans-serif;
  16. font-size: 11px;
  17. font-weight: bold;
  18. color: rgb(68,68,68);
  19. text-decoration: none;
  20. user-select: none;
  21. padding: .2em 1.2em;
  22. outline: none;
  23. border: 1px solid rgba(0,0,0,.1);
  24. border-radius: 2px;
  25. background: rgb(245,245,245) linear-gradient(#f4f4f4, #f1f1f1);
  26. transition: all .218s ease 0s;
  27. }
  28.  
  29. button:active {
  30. color: rgb(51,51,51);
  31. border: 1px solid rgb(204,204,204);
  32. background: rgb(238,238,238) linear-gradient(rgb(238,238,238), rgb(224,224,224));
  33. box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement