learning.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* HEAD LEARNING PROCESS */
  2. .header-content{
  3. min-height: 60px;
  4. width: 100%;
  5. text-align: center;
  6. display: flex;
  7. position: fixed;
  8. z-index: 100;
  9. background: var(--color-default-bg);
  10. }
  11. .head-container{
  12. width: 100%;
  13. position: relative;
  14. max-width: 1170px;
  15. margin: auto;
  16. padding-left: 15px;
  17. padding-right: 15px;
  18. }
  19. .body-container{
  20. padding-top: 60px;
  21. }
  22. .head-container .left-head{
  23. background: url('../img/icon-bg-reading.svg') 0px -510px;
  24. width: 21px;
  25. height: 20px;
  26. position: absolute;
  27. top: 50%;
  28. transform: translate(0, -50%);
  29. cursor: pointer;
  30. }
  31. .head-container .middle-head{
  32. background: url('../img/icon.png') -81px 0px;
  33. width: 81px;
  34. height: 36px;
  35. margin: auto;
  36. cursor: pointer;
  37. }
  38. .head-container .right-head .header-container-library-account-no-image{
  39. width: 35px;
  40. height: 35px;
  41. line-height: 32px;
  42. border-radius: 50%;
  43. }
  44. .head-container .right-head .header-container-library-account img{
  45. width: 35px;
  46. height: 35px;
  47. border-radius: 50%;
  48. }
  49. .head-container .middle-head a{
  50. display: inline-block;
  51. width: 100%;
  52. height: 100%;
  53. }
  54. .head-container .left-head a{
  55. font-family: opensansregular;
  56. font-size: 14px;
  57. color: #ffffff;
  58. text-decoration: none;
  59. text-transform: uppercase;
  60. position: absolute;
  61. display: block;
  62. width: 250px;
  63. left: 0px;
  64. top: 50%;
  65. transform: translate(0, -50%);
  66. text-align: left;
  67. padding-left: 40px;
  68. white-space: nowrap;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. }
  72. .head-container .right-head{
  73. position: absolute;
  74. right: 15px;
  75. top: 50%;
  76. transform: translate(0, -50%);
  77. cursor: pointer;
  78. }
  79. .head-container .right-head .menu-avatar-container.dropdown-menu{
  80. top: 45px;
  81. }
  82. .head-container .fa-chevron-down{
  83. font-size: 15px;
  84. }
  85. .head-container .right-head .menu-avatar-container.dropdown-menu .menu-avatar-container-arrow{
  86. top: -7px;
  87. right: 42px;
  88. }
  89. /* End HEAD LEARNING PROCESS */
  90. @media (max-width: 767px) {
  91. .head-container .left-head a{
  92. opacity: 0;
  93. }
  94. }