Advertisement
Guest User

tabs.css

a guest
May 24th, 2015
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. en-tabs {
  2.   display: table;
  3.   line-height: normal;
  4. }
  5. en-tabs en-tab {
  6.   font-size: 1.3rem;
  7.   border-bottom: 0.2rem solid transparent;
  8.   padding: 0.9rem 1.2rem;
  9.   display: table-cell;
  10.   font-weight: 600;
  11.   margin-left: 1rem;
  12.   -moz-box-sizing: border-box;
  13.   -webkit-box-sizing: border-box;
  14.   box-sizing: border-box;
  15. }
  16. en-tabs .no-touch en-tab:hover,
  17. en-tabs en-tab:hover,
  18. en-tabs en-tab:active {
  19.   border-color: #556069;
  20. }
  21. en-tabs en-tab.active,
  22. en-tabs en-tab.active:active,
  23. en-tabs .no-touch en-tab.active:hover,
  24. en-tabs en-tab.active:hover {
  25.   border-color: #1500ff;
  26.   color: #1500ff;
  27. }
  28.  
  29. en-tab-container {
  30.   display: block;
  31. }
  32. en-tab-container en-tab-pane {
  33.   display: none;
  34. }
  35. en-tab-container en-tab-pane.active {
  36.   display: block;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement