2017-03-19 17:04:38 +00:00
|
|
|
<template>
|
|
|
|
<main>
|
|
|
|
<nuxt/>
|
|
|
|
</main>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
padding: 50px;
|
|
|
|
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #00B7FF;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 0 10 0 10;
|
|
|
|
}
|
2020-04-15 02:19:34 +00:00
|
|
|
|
|
|
|
.button {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0.5rem;
|
|
|
|
border: solid #aaa 1px;
|
|
|
|
background-color: #eee;
|
|
|
|
color: #000;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 0 1rem;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.disabled {
|
|
|
|
color: #555;
|
|
|
|
background-color: #aaa;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
2017-03-19 17:04:38 +00:00
|
|
|
</style>
|