Advertisement
Guest User

index.css

a guest
Jan 16th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1. .bg {
  2.     background-image: url("slike/background.png");
  3.     background-attachment: fixed;
  4.     background-size: cover;
  5.     background-position: center;
  6.     background-repeat: no-repeat;
  7.     min-height: 100vh;
  8. }
  9. body{
  10.     font-family: 'Gelasio', serif;
  11.     font-size: 24px;
  12.     position: relative;
  13. }
  14. h1,h2{
  15.     color:rgb(26, 26, 62);
  16. }
  17. nav{
  18.     background-color: rgb(26, 26, 62);
  19. }
  20. .circle{
  21.     background-color: rgb(26, 26, 62);
  22.     color: white;
  23. }
  24. .circle:hover{
  25.     color:rgb(26, 26, 62);
  26.     background-color: white;
  27. }
  28. .footer{
  29.     background-color: rgb(26, 26, 62);
  30. }
  31. .white{
  32.     background-color: white;
  33. }
  34. #copyright{
  35.     color: white;
  36.     font-size: 16px;
  37. }
  38. .prog{
  39.     border: 1px solid;
  40.     border-color:rgb(26, 26, 62);
  41. }
  42. .dpt{
  43.     padding-top: 120px;
  44. }
  45. @media only screen and (max-width: 600px) {
  46.     body, h4 {
  47.       font-size: 16px;
  48.     }
  49.     #copyright{
  50.         font-size: 12px;
  51.     }
  52.     .display-4{
  53.         font-size: 32px;
  54.     }
  55.     .display-3{
  56.         font-size: 40px;
  57.     }
  58.     .dpt{
  59.         padding-top: 60px;
  60.     }
  61.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement