Advertisement
kryty

Untitled

Oct 14th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Lato&display=swap&subset=latin-ext');
  2.  
  3. *::selection {
  4. selection: none;
  5. }
  6.  
  7. body {
  8. font-family: 'Lato', sans-serif;
  9. color: black;
  10. background-color: white;
  11. overflow: hidden;
  12. }
  13.  
  14. .container {
  15. margin: 10px;
  16. }
  17.  
  18. .h1 {
  19. color: #32a852;
  20. }
  21.  
  22. .h3 {
  23. color: #3244a8;
  24. }
  25.  
  26. .bold {
  27. font-weight: bold;
  28. }
  29.  
  30. .a {
  31. color: black;
  32. text-decoration: none;
  33. }
  34.  
  35. .a:hover {
  36. color: black;
  37. text-decoration: underline;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement