Guest User

Untitled

a guest
Feb 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. body {
  2. background-color: darkgrey;
  3. font-family: "微軟正黑體";
  4. }
  5.  
  6. .container {
  7. width: 500px;
  8. margin: 0 auto;
  9. margin-top: 100px;
  10. }
  11.  
  12. .tab-label-wrapper {
  13. width: 100%;
  14. text-align: center;
  15. background-color: #16A086;
  16. }
  17.  
  18. .tab-label-wrapper label {
  19. width: 10%;
  20. color: white;
  21. background-color: #16A086;
  22. display: inline-block;
  23. padding: 10px 20px;
  24. margin: 0;
  25. cursor: pointer;
  26. /* border: 3px solid white; */
  27. }
  28.  
  29. .tab-label-wrapper label.active {
  30. background-color: #1CBB9B;
  31. }
  32.  
  33. .tab-content-wrapper {
  34. width: 100%;
  35. text-align: center;
  36. }
  37.  
  38. .tab-content-wrapper div {
  39. display: none;
  40. width: 100%;
  41. background: white;
  42. height: 200px;
  43. padding-top: 50px;
  44. font-size: 30px;
  45. }
Add Comment
Please, Sign In to add comment