Guest User

Untitled

a guest
Jan 21st, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <section class="контейнер">
  2. <button class="кнопка кнопка_красная">Отправить</button>
  3. </section>
  4.  
  5.  
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. text-decoration: none;
  11. list-style: none;
  12. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  13. font-size: medium;
  14. }
  15.  
  16. .кнопка {
  17. padding: 10px;
  18. border: solid 1px rgba(0, 0, 0, 0);
  19. border-radius: 10px;
  20. box-shadow: 0 0 20px #d10031;
  21. text-shadow: 0 0 50px black;
  22. user-select: none;
  23. }
  24.  
  25. .кнопка:active,
  26. .кнопка:focus {
  27. outline: none;
  28. }
  29.  
  30. .кнопка:active {
  31. box-shadow: 0 0 5px #d10031;
  32. }
  33.  
  34. .кнопка_красная {
  35. background: #d10031;
  36. color: #ffd1dc;
  37. }
  38.  
  39. .контейнер {
  40. padding: 10px;
  41. }
  42. </style>
Add Comment
Please, Sign In to add comment