Advertisement
rosenrosenboy

coin.css

Dec 17th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. /*
  2.  * Base structure
  3.  */
  4.  
  5. /* Move down content because we have a fixed navbar that is 50px tall */
  6. body {
  7.   padding-top: 50px;
  8. }
  9.  
  10. /*
  11.  * Typography
  12.  */
  13.  
  14. h1 {
  15.   margin-bottom: 20px;
  16.   padding-bottom: 9px;
  17.   border-bottom: 1px solid #eee;
  18. }
  19. .price{
  20.   font-size: 25px;
  21.   color: rgb(70, 69, 69);
  22. }
  23. /*
  24.  * Sidebar
  25.  */
  26.  
  27. .sidebar {
  28.   position: fixed;
  29.   top: 51px;
  30.   bottom: 0;
  31.   left: 0;
  32.   z-index: 1000;
  33.   padding: 20px;
  34.   overflow-x: hidden;
  35.   overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  36.   border-right: 1px solid #eee;
  37. }
  38.  
  39. /* Sidebar navigation */
  40. .sidebar {
  41.   padding-left: 0;
  42.   padding-right: 0;
  43. }
  44.  
  45. .sidebar .nav {
  46.   margin-bottom: 20px;
  47. }
  48.  
  49. .sidebar .nav-item {
  50.   width: 100%;
  51. }
  52.  
  53. .sidebar .nav-item + .nav-item {
  54.   margin-left: 0;
  55. }
  56.  
  57. .sidebar .nav-link {
  58.   border-radius: 0;
  59. }
  60.  
  61. /*
  62.  * Dashboard
  63.  */
  64.  
  65.  /* Placeholders */
  66. .placeholders {
  67.   padding-bottom: 3rem;
  68. }
  69.  
  70. .placeholder img {
  71.   padding-top: 1.5rem;
  72.   padding-bottom: 1.5rem;
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement