Advertisement
Katsiree

ฟอมฝาก/ถอน

Oct 11th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.34 KB | None | 0 0
  1. .transaction .tab_container {
  2. width: 100%;
  3. position: relative;
  4. }
  5.  
  6. .transaction input.radioSelect,
  7. .transaction section {
  8. clear: both;
  9. padding-top: 10px;
  10. display: none;
  11. }
  12.  
  13. .transaction label.radioSelect {
  14. font-weight: 700;
  15. font-size: 18px;
  16. display: block;
  17. float: left;
  18. width: 33.33%;
  19. padding: 15px;
  20. color: #756a09;
  21. cursor: pointer;
  22. text-decoration: none;
  23. text-align: center;
  24. background: #f5f5f5;
  25. margin: 0;
  26. }
  27.  
  28. .transaction #tab1:checked~#content1,
  29. .transaction #tab2:checked~#content2,
  30. .transaction #tab3:checked~#content3 {
  31. display: block;
  32. padding: 20px;
  33. background: #f5f5f5;
  34. color: #999;
  35. border-top: 5px solid #3a669c;
  36. }
  37.  
  38. .transaction .tab_container .tab-content p,
  39. .transaction .tab_container .tab-content h3,
  40. .transaction .tab_container .tab-content form {
  41. -webkit-animation: fadeInScale 0.7s ease-in-out;
  42. -moz-animation: fadeInScale 0.7s ease-in-out;
  43. animation: fadeInScale 0.7s ease-in-out;
  44. }
  45.  
  46. .transaction .tab_container [id^="tab"]:checked+label {
  47. background: #3a669c;
  48. box-shadow: inset 0 3px #08274d;
  49. color: #ffffff;
  50. }
  51.  
  52. .transaction .tab_container [id^="tab"]:checked+label .fa {
  53. color: #08274d;
  54. }
  55.  
  56. /*Content Animation*/
  57. @keyframes fadeInScale {
  58. 0% {
  59. transform: scale(0.9);
  60. opacity: 0;
  61. }
  62.  
  63. 100% {
  64. transform: scale(1);
  65. opacity: 1;
  66. }
  67. }
  68.  
  69. .transaction h3 {
  70. color: #756a09;
  71. /* font-size: 25px; */
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement