| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* FONTS */
- @font-face{
- font-family:'raleway';
- src: url('../fonts/Raleway-Thin.otf');
- -webkit-font-smoothing: antialiased;
- }
- @font-face{
- font-family:'openSans';
- src: url('../fonts/OpenSans-Light.ttf');
- -webkit-font-smoothing: antialiased;
- }
- html, body{
- font-family:'openSans';
- font-size: 14px;
- margin: 0;
- padding: 0;
- height: 100%;
- }
- /* NAV */
- .home{
- width: 100%;
- height: 400px;
- background-size: cover;
- background-image: url('../images/home.jpg');
- margin-left: 0;
- margin-top:0;
- font-family:'raleway';
- -webkit-text-stroke: 0.3px;
- }
- .navbar{
- margin: 0;
- background-color: white;
- width: 100%;
- height: 50px;
- text-align: right;
- -webkit-box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
- box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
- }
- .navlist{
- font-size: 22px;
- margin:0;
- list-style-type: none;
- }
- .navlist a{
- text-decoration: none;
- text-transform: uppercase;
- color: #6E7679;
- }
- .navlist li{
- vertical-align: middle;
- display : inline;
- margin: 0 10px;
- }
|