wes-website/styles.css

38 lines
1022 B
CSS
Raw Normal View History

2021-11-09 20:26:25 +01:00
/* montserrat-regular - latin */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
src: url('../fonts/montserrat-v18-latin-regular.eot'); /* IE9 Compat Modes */
src: local(''),
2021-11-09 20:33:04 +01:00
url('fonts/montserrat.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/montserrat.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/montserrat.woff') format('woff'), /* Modern Browsers */
url('fonts/montserrat.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/montserrat.svg#Montserrat') format('svg'); /* Legacy iOS */
2021-11-09 20:26:25 +01:00
}
2021-11-09 20:30:18 +01:00
2021-11-09 20:16:50 +01:00
ul {
2021-11-09 20:10:37 +01:00
list-style-type: none;
margin: 0;
padding: 0;
2021-11-09 20:16:50 +01:00
overflow: hidden;
background-color: #333;
}
2021-11-09 20:16:50 +01:00
li {
2021-11-09 20:16:50 +01:00
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change the link color to #111 (black) on hover */
li a:hover {
background-color: #111;
2021-11-09 20:10:37 +01:00
}