Nuxt/examples/global-css/css/main.css

23 lines
446 B
CSS
Raw Normal View History

2017-08-30 13:59:09 +00:00
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(../assets/roboto.woff2) format('woff2');
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
body {
background: #eee;
text-align: center;
padding-top: 30px;
2016-12-07 22:44:11 +00:00
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
2017-08-30 13:59:09 +00:00
font-family: 'Roboto';
}
.content {
margin-top: 100px;
}