Advertisement
horozov86

css for base.html

Mar 5th, 2024
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. /* style.css */
  2. .navbar {
  3.     display: flex;
  4.     justify-content: space-between;
  5.     align-items: center;
  6.     padding: 10px;
  7. }
  8.  
  9. .navbar h1 {
  10.     margin: 0;
  11. }
  12.  
  13. .navbar nav {
  14.     margin-left: auto;
  15. }
  16.  
  17. .navbar nav a {
  18.     margin-left: 10px;
  19.     text-decoration: none;
  20.     color: #fff;
  21. }
  22.  
  23. /* You can add additional styling as needed */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement