Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <div class="container-fluid top-menu">
  2. <div class="row">
  3. <div class="col-sm-8">
  4. <ul>
  5. <li *ngFor="let menu of topMenu">{{ menu.label }}</li>
  6. </ul>
  7. </div>
  8. <div class="col-sm-4">
  9. <div class="separator float-right"></div>
  10. <div class="float-right" style="padding-top: 10px; margin-right: 10px">
  11. Dan Silver
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16.  
  17. .top-menu {
  18. border-top: 3px solid #FF6600;
  19. font-size: 12px;
  20. color: #212121;
  21. height: 40px;
  22. border-bottom: 1px solid #E0E0E0;
  23. }
  24. .top-menu ul {
  25. list-style-type: none;
  26. height: 10px;
  27. margin-top: 10px;
  28. }
  29. .top-menu li {
  30. float: left;
  31. margin-right: 20px;
  32. }
  33. .separator {
  34. border-left: 1px solid #e0e0e0;
  35. height: 25px;
  36. margin: 5px 0 3px 0;
  37. }
  38. .right-top-menu {
  39. margin-right: 10px;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement