Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4.  
  5. .banner {
  6. height: 15rem;
  7. width: auto;
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. }
  12.  
  13. .clearfix::after {
  14. content: '';
  15. display: block;
  16. clear: both;
  17. }
  18.  
  19. body {
  20. margin: 0;
  21. padding: 0;
  22. }
  23.  
  24. .topnav nav {
  25. margin: 0rem;
  26. max-width: 100%;
  27. color: grey;
  28. font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  29. }
  30.  
  31. .topnav nav ul {
  32. margin: 0;
  33. padding: 0;
  34. list-style: none;
  35. }
  36.  
  37. .topnav nav ul li {
  38. display: inline;
  39. }
  40.  
  41. .topnav nav ul li:last-child a {
  42. margin: 0;
  43. }
  44.  
  45. .topnav nav ul li a {
  46. text-decoration: none;
  47. text-align: center;
  48. display: block;
  49. padding: 1.65rem;
  50. margin: 0 0 0 0;
  51. background-color: #000000;
  52. color: rgba(231, 231, 231, 0.78);
  53. font-family: 'Open Sans Condensed', sans-serif;
  54. font-size: 1.5rem;
  55. border-bottom: 2px solid #cae7b6;
  56. }
  57.  
  58. .topnav nav ul li:last-child a {
  59. margin: 0;
  60. }
  61.  
  62. .topnav nav ul li a:hover {
  63. border-bottom: 2px solid rgba(14, 137, 1, 0.98);
  64. }
  65. @media screen and (min-width: 35rem) {
  66. nav ul li a {
  67. width: 25%;
  68. float: left;
  69. margin-bottom: 1rem;
  70. }
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement