navbar.css 937 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @import url("https://fonts.googleapis.com/css?family=Raleway");
  2. #logo {
  3. color: whitesmoke;
  4. font-weight: 400;
  5. font-size: 1.7em;
  6. font-family: 'Raleway', sans-serif !important;
  7. padding: 0;
  8. text-shadow: 1px 1px 3px black, 0 0 1em #00b3ee;
  9. }
  10. #logo:hover {
  11. text-shadow: 1px 1px 2px black, 0 0 2em red;
  12. }
  13. /*------- SEARCH INPUT ---------------------------------------*/
  14. #nav-search [type="submit"] {
  15. color: #2e587c;
  16. font-weight: 400;
  17. text-shadow: 1px 1px 1px grey;
  18. border-left: 1px solid lightgrey;
  19. }
  20. #nav-search form select {
  21. border-radius: 0;
  22. border-left: 0;
  23. border-right: none;
  24. background-color: #f9f9f2;
  25. }
  26. #nav-search #basic-addon {
  27. background-color: white;
  28. }
  29. #nav-search .dropdown-toggle {
  30. background-color: white;
  31. border: 1px solid lightgrey;
  32. }
  33. #nav-search .dropdown-menu.show {
  34. width: 100%;
  35. }
  36. /*------- END SEARCH INPUT ------------------------------------*/