mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
49 lines
864 B
Vue
49 lines
864 B
Vue
<template>
|
|
<div>
|
|
<nuxt />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
html {
|
|
font-family: 'New_Zelek', 'Arial';
|
|
font-size: 16px;
|
|
word-spacing: 1px;
|
|
-ms-text-size-adjust: 100%;
|
|
-webkit-text-size-adjust: 100%;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
box-sizing: border-box;
|
|
}
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
}
|
|
.button--green {
|
|
display: inline-block;
|
|
border-radius: 4px;
|
|
border: 1px solid #FF2965;
|
|
color: #FF2965;
|
|
text-decoration: none;
|
|
padding: 10px 30px;
|
|
}
|
|
.button--green:hover {
|
|
color: #fff;
|
|
background-color: #FF2965;
|
|
}
|
|
.button--grey {
|
|
display: inline-block;
|
|
border-radius: 4px;
|
|
border: 1px solid #FF2965;
|
|
color: #FF2965;
|
|
text-decoration: none;
|
|
padding: 10px 30px;
|
|
margin-left: 15px;
|
|
}
|
|
.button--grey:hover {
|
|
color: #fff;
|
|
background-color: #FF2965;
|
|
}
|
|
</style> |