Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. .topbar {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. border-bottom: 1px solid #dedede;
  6. background: #fff;
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. right: 0;
  11. height: 70px;
  12. }
  13.  
  14. .logo {
  15. padding: 8px;
  16. display: flex;
  17. align-items: center;
  18. margin-left: 1rem;
  19. .lbox {
  20. height: 30px;
  21. width: 30px;
  22. background: rgba(6, 35, 82, 0.7);
  23. }
  24. h1 {
  25. font-size: 1.9rem;
  26. font-weight: 700;
  27. color: rgb(6, 35, 82);
  28. margin: 0;
  29. margin-left: 0.5rem;
  30. }
  31. }
  32.  
  33. .user {
  34. display: flex;
  35. align-items: center;
  36. .img {
  37. height: 40px;
  38. width: 40px;
  39. border-radius: 50%;
  40. background: rgba(6, 35, 82, 0.9);
  41. }
  42. .namer {
  43. padding: 8px;
  44. margin-left: 0.3rem;
  45. margin-right: 1rem;
  46. p {
  47. margin: 0;
  48. &.name {
  49. font-weight: 500;
  50. }
  51. &.pos {
  52. font-size: 0.8rem;
  53. color: rgb(141, 141, 141);
  54. }
  55. }
  56. }
  57. }
  58.  
  59. .content {
  60. margin-top: 70px;
  61. }
  62.  
  63. .menu {
  64. display: flex;
  65. align-items: flex-start;
  66. justify-content: flex-start;
  67. padding: 8px;
  68. .menu-item {
  69. margin-left: .5rem;
  70. a {
  71. padding: 0.5rem 1rem;
  72. border: 1px solid #dedede;
  73. text-decoration: none;
  74. display: block;
  75. margin: 0;
  76. border-radius: 3px;
  77. color: rgb(6, 35, 82);
  78. &:hover {
  79. background: rgb(6, 35, 82);
  80. color: #fff;
  81. }
  82. }
  83. }
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement