Advertisement
social1986

Untitled

Dec 13th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.75 KB | None | 0 0
  1. /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
  2. for details on configuring this project to bundle and minify static web assets. */
  3. .navbar {
  4.     position: fixed; /* Set the navbar to fixed position */
  5.     top: 0; /* Position the navbar at the top of the page */
  6.     width: 100%;
  7. }
  8.  
  9. .fa-search {
  10.     color: #f8f9fa;
  11.     font-size: 25px;
  12. }
  13.  
  14. a.navbar-brand {
  15.     white-space: normal;
  16.     text-align: center;
  17.     word-break: break-all;
  18. }
  19.  
  20. .dark-background {
  21.     background-color: black;
  22. }
  23.  
  24. /* Sticky footer styles
  25. -------------------------------------------------- */
  26. html {
  27.     font-size: 14px;
  28. }
  29.  
  30.  
  31. @media (min-width: 768px) {
  32.     html {
  33.         font-size: 16px;
  34.     }
  35. }
  36.  
  37. .border-top {
  38.     border-top: 1px solid #e5e5e5;
  39. }
  40.  
  41. ul li {
  42.     opacity: .8;
  43. }
  44.  
  45. .custom-class {
  46.     opacity: .7;
  47. }
  48.  
  49. .new {
  50.     opacity: 0.7;
  51. }
  52.  
  53. .border-bottom {
  54.     border-bottom: 1px solid #e5e5e5;
  55. }
  56.  
  57. .box-shadow {
  58.     box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
  59. }
  60.  
  61.  
  62. button.accept-policy {
  63.     font-size: 1rem;
  64.     line-height: inherit;
  65. }
  66.  
  67. .away-from-navbar {
  68.     margin-bottom: 150px;
  69. }
  70.  
  71. html {
  72.     position: relative;
  73.     min-height: 100%;
  74. }
  75.  
  76. body {
  77.     /* Margin bottom by footer height */
  78.     margin-bottom: 60px;
  79.     background: url("../images/automobile-bmw-car-89784.jpg");
  80.     background-size: cover;
  81.     font-family: Arial;
  82. }
  83.  
  84. .footer {
  85.     position: absolute;
  86.     bottom: 0;
  87.     width: 100%;
  88.     white-space: nowrap;
  89.     /* Set the fixed height of the footer here */
  90.     height: 20px;
  91.     line-height: 60px; /* Vertically center the text there */
  92.     color: white !important;
  93.     text-align: center;
  94. }
  95.  
  96. footer a {
  97.     text-decoration-color: black;
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement