Guest User

Untitled

a guest
Jun 22nd, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. .td_btn {
  2. cursor: pointer;
  3. display: inline-block;
  4. position: relative;
  5. color: white;
  6. font-family: 'Open Sans', arial, sans-serif;
  7. font-weight: 600;
  8. }
  9. .td_btn_sm {
  10. padding: 5px 10px;
  11. font-size: 12px;
  12. line-height: 1.5;
  13. }
  14. .td_btn_sm.td_round_btn {
  15. border-radius: 3px;
  16. }
  17. .td_btn_md {
  18. padding: 9px 12px;
  19. font-size: 16px;
  20. line-height: 20px;
  21. }
  22. .td_btn_md.td_round_btn {
  23. border-radius: 4px;
  24. }
  25. .td_btn_lg {
  26. padding: 10px 16px;
  27. font-size: 18px;
  28. line-height: 1.33;
  29. }
  30. .td_btn_lg.td_round_btn {
  31. border-radius: 6px;
  32. }
  33. .td_default_btn,
  34. .td_round_btn {
  35. transition: background-color 0.1s ease;
  36. -webkit-transition: background-color 0.1s ease;
  37. background-color: #4db2ec;
  38. }
  39. .td_default_btn:hover,
  40. .td_round_btn:hover {
  41. background-color: #444 !important;
  42. }
  43. .td_default_btn:active,
  44. .td_round_btn:active {
  45. background-color: #000 !important;
  46. }
  47. .td_outlined_btn {
  48. border-width: 2px;
  49. border-style: solid;
  50. border-color: #4db2ec;
  51. border-radius: 4px;
  52. color: #4db2ec;
  53. background-color: transparent;
  54. transition: all 0.1s ease ;
  55. -webkit-transition: all 0.1s ease;
  56. }
  57. .td_outlined_btn:hover {
  58. background-color: #4db2ec;
  59. color: #fff;
  60. }
  61. .td_outlined_btn:active {
  62. background-color: #444 !important;
  63. border-color: #444;
  64. }
  65. .td_shadow_btn {
  66. background-color: #4db2ec;
  67. top: 0;
  68. -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25);
  69. -moz-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25);
  70. box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25);
  71. transition: top 0.1s ease;
  72. -webkit-transition: top 0.1s ease;
  73. }
  74. .td_shadow_btn:hover {
  75. top: -3px;
  76. -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25);
  77. -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25);
  78. box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25);
  79. }
  80. .td_shadow_btn:active {
  81. background-color: #444 !important;
  82. }
  83. .td_3D_btn {
  84. background-color: #4db2ec;
  85. top: 0;
  86. transition: top 0.1s ease;
  87. -webkit-transition: top 0.1s ease;
  88. }
  89. .td_3D_btn:after {
  90. content: "";
  91. position: absolute;
  92. display: block;
  93. left: 0;
  94. top: 100%;
  95. width: 100%;
  96. height: 5px;
  97. background-color: rgba(0, 0, 0, 0.25);
  98. z-index: 0;
  99. transition: height 0.1s ease;
  100. -webkit-transition: height 0.1s ease;
  101. }
  102. .td_3D_btn:hover {
  103. top: 5px;
  104. }
  105. .td_3D_btn:hover:before {
  106. height: 0;
  107. }
  108. .td_3D_btn:hover:after {
  109. height: 0;
  110. }
  111. .td_3D_btn:active {
  112. background-color: #444 !important;
  113. }
Advertisement
Add Comment
Please, Sign In to add comment