Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.48 KB | None | 0 0
  1. a{
  2.     margin-left: 10%;
  3. }
  4. a:hover{
  5.     color: #B0B0B0 !important;
  6. }
  7. i:hover{
  8.     color: #B0B0B0;
  9. }
  10. nav{
  11.     height: 44px;
  12.     background-color: rgba(45,45,45,0.98);
  13. }
  14. hr{
  15.     border: 1px solid #999 !important;
  16.     width: 80% !important;
  17. }
  18.  
  19. .nav-link{
  20.     color: #fff !important;
  21.     font-size: 14px;
  22.     font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Helvetica Neue",
  23.     "Helvetica","Arial",sans-serif;
  24.     padding: 0 !important;
  25. }
  26.  
  27. .navbar-nav{
  28.     margin-bottom: 70% !important;
  29. }
  30.  
  31. .navbar-toggler{
  32.     border-color: #343a40 !important;
  33.     color: #fff !important;
  34. }
  35.  
  36. .btn_hide{
  37.     background: rgba(45,45,45,0);
  38.     color: #fff;
  39.     border: none;
  40. }
  41.  
  42. #navbarNav-collapsing{
  43.     background-color: #000 !important;
  44.     width: 100%;
  45. }
  46.  
  47. .turnblack{
  48.     background-color: #000 !important;
  49.     /*transition-delay: 1s !important;*/
  50. }
  51.  
  52. .form-control{
  53.     background-color: #343a40 !important;
  54. }
  55.  
  56.  
  57.  
  58.  
  59. @media (min-width: 768px){
  60.     nav{
  61.         height: 44px;
  62.         background-color: rgba(45,45,45,0.98);
  63.     }
  64.  
  65.     #navbarNav-collapsing{
  66.         display: none !important;
  67.     }
  68.  
  69.     #navbarNav{
  70.         justify-content: center !important;
  71.     }
  72.  
  73.     .btn_hide{
  74.         display: none;
  75.     }
  76.  
  77.     .nav-item{
  78.         /* при сворачивании расстояние сохраняется и это неправильно*/
  79.         padding: 0 30px !important;
  80.  
  81.         /*это вообще не работает:*/
  82.         /*max-width: 100px !important;*/
  83.         /*min-width: 55px;*/
  84.     }
  85.  
  86.  
  87.  
  88.     .turnblack{
  89.     background-color: rgba(45,45,45,0.98) !important;
  90.     }
  91.  
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement