home.css 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* FONTS */
  2. @font-face{
  3. font-family:'raleway';
  4. src: url('../fonts/Raleway-Thin.otf');
  5. -webkit-font-smoothing: antialiased;
  6. }
  7. @font-face{
  8. font-family:'openSans';
  9. src: url('../fonts/OpenSans-Light.ttf');
  10. -webkit-font-smoothing: antialiased;
  11. }
  12. html, body{
  13. font-family:'openSans';
  14. font-size: 14px;
  15. margin: 0;
  16. padding: 0;
  17. height: 100%;
  18. }
  19. /* NAV */
  20. .home{
  21. width: 100%;
  22. height: 400px;
  23. background-size: cover;
  24. background-image: url('../images/home.jpg');
  25. margin-left: 0;
  26. margin-top:0;
  27. font-family:'raleway';
  28. -webkit-text-stroke: 0.3px;
  29. }
  30. .navbar{
  31. margin: 0;
  32. background-color: white;
  33. width: 100%;
  34. height: 50px;
  35. text-align: right;
  36. -webkit-box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
  37. box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
  38. }
  39. .navlist{
  40. font-size: 22px;
  41. margin:0;
  42. list-style-type: none;
  43. }
  44. .navlist a{
  45. text-decoration: none;
  46. text-transform: uppercase;
  47. color: #6E7679;
  48. }
  49. .navlist li{
  50. vertical-align: middle;
  51. display : inline;
  52. margin: 0 10px;
  53. }