2018-11-27 10:51:33 +00:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
<template>
|
|
|
|
<div id="app">
|
|
|
|
<router-view/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "montserrat_regular";
|
|
|
|
src: url("../static/fonts/montserrat_regular.ttf");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "montserrat_medium";
|
|
|
|
src: url("../static/fonts/montserrat_medium.ttf");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "montserrat_bold";
|
|
|
|
src: url("../static/fonts/montserrat_bold.ttf");
|
|
|
|
}
|
|
|
|
|
2018-11-14 14:57:21 +00:00
|
|
|
a{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-weight: 600;
|
|
|
|
border: 1px solid rgba(56, 75, 101, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
input:hover,
|
|
|
|
textarea:hover {
|
|
|
|
border-color: #737791 !important;
|
|
|
|
}
|
|
|
|
</style>
|