Guest User

Untitled

a guest
Dec 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. $darkred: rgb(71, 0, 0);
  2.  
  3. .sidenav {
  4. background-color: #000860;
  5. left: 0;
  6. width: 15%;
  7. }
  8.  
  9. .item {
  10. display: block;
  11. overflow: hidden;
  12. }
  13.  
  14. .content-container {
  15. background-color: #0789f4;
  16. right: 0;
  17. top: 0;
  18. height: 900px;
  19. }
  20.  
  21. .container {
  22. background-color: $darkred;
  23. &:hover {
  24. background-color: adjust-hue($darkred, 90deg);
  25. }
  26. width: 100%;
  27. padding-top: 100%;
  28. position: relative;
  29. border: 1px red solid;
  30. }
  31.  
  32. <div class="container">
  33. <div class="item">
  34. <mat-icon>home</mat-icon>
  35. </div>
  36. </div>
Add Comment
Please, Sign In to add comment