Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1.  
  2. /******************
  3. GUIDEBOOK
  4. ******************/
  5. .tabinfo-holder {
  6. padding: 1px;
  7. position: relative;
  8. display: flex;
  9. justify-content: space-between;
  10. height: 70vh;
  11. align-items: stretch;
  12. border: 1px solid #ccc;
  13. }
  14. .information-tabs {
  15. display: inline-block;
  16. flex-basis:25%;
  17. border-right: 1px solid #ccc;
  18. background: #fefefe;
  19. overflow: auto;
  20. }
  21.  
  22. .information-tabs li, .information-tabs ul.tabs {
  23. list-style:none;
  24. margin: 0px;
  25. position: relative;
  26. left: -20px;
  27. }
  28.  
  29. .information-tabs a {
  30. padding: 6px;
  31. display: block;
  32. text-align: right;
  33. color: #9C8AA5;
  34. font-family: 'Julius Sans One', sans-serif;
  35. text-transform: uppercase;
  36. font-size: 14px;
  37. line-height: 16px;
  38. }
  39. .information-tabs a:hover {
  40. color: #9C8AA5;
  41. }
  42. .information-tabs a.active {
  43. color: #9C8AA5;
  44. }
  45. .information-tabs a.active:after {
  46. display: inline-block;
  47. margin-left: 10px;
  48. content: ' «'
  49. }
  50. .information-tabs h1 {
  51. padding: 10px;
  52. border-bottom: 1px solid #9C8AA5;
  53. text-align: center;
  54. color: #9C8AA5;
  55. font-family: georgia;
  56. text-transform: uppercase;
  57. font-size: 20px;
  58. line-height: 20px;
  59. }
  60. .information-tabs h2 {
  61. padding: 10px;
  62. background: #9C8AA5;
  63. color: #fff;
  64. text-align: left;
  65. border-radius: 15px;
  66. line-height: 20px;
  67. font-size: 15px;
  68. font-family: 'Julius Sans One', sans-serif;
  69. }
  70.  
  71.  
  72. .information-tabcontent {
  73. display: inline-block;
  74. background: #fafafa;
  75. border: 10px solid transparent;
  76. flex-basis: 75%;
  77. text-align: justify;
  78. padding: 15px;
  79. font-family: arial;
  80. font-size: 12px;
  81. line-height: 14px;
  82. overflow: auto;
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement