mirror of
https://github.com/robonen/canvas-3d.git
synced 2026-06-20 01:55:19 +00:00
feat(project): basic settings, styles, fonts
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<NuxtPage/>
|
||||
</template>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,41 @@
|
||||
@mixin MakeFont($font-family, $fonts, $base-font-path: '') {
|
||||
@each $font, $weight in $fonts {
|
||||
$font-with-dash: #{$font-family}-#{$font};
|
||||
$font-with-space: #{$font-family} #{$font};
|
||||
$font-with-path: #{$base-font-path}/#{$font-with-dash};
|
||||
|
||||
@font-face {
|
||||
font-family: $font-family;
|
||||
src: url('#{$font-with-path}.eot');
|
||||
src: local('#{$font-with-dash}'), local('#{$font-with-space}'),
|
||||
url('#{$font-with-path}.eot?#iefix') format('embedded-opentype'),
|
||||
url('#{$font-with-path}.woff2') format('woff2'),
|
||||
url('#{$font-with-path}.woff') format('woff'),
|
||||
url('#{$font-with-path}.ttf') format('truetype');
|
||||
font-weight: $weight;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: $font-family;
|
||||
src: url('#{$font-with-path}Italic.eot');
|
||||
src: local('#{$font-with-dash}Italic'), local('#{$font-with-space} Italic'),
|
||||
url('#{$font-with-path}Italic.eot?#iefix') format('embedded-opentype'),
|
||||
url('#{$font-with-path}Italic.woff2') format('woff2'),
|
||||
url('#{$font-with-path}Italic.woff') format('woff'),
|
||||
url('#{$font-with-path}Italic.ttf') format('truetype');
|
||||
font-weight: $weight;
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$fonts: (
|
||||
Light: 300,
|
||||
Regular: 400,
|
||||
Medium: 500,
|
||||
Bold: 600,
|
||||
Black: 700,
|
||||
);
|
||||
|
||||
@include MakeFont('Formular', $fonts, '@/assets/fonts/formular');
|
||||
@@ -0,0 +1,3 @@
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
:root {
|
||||
--background-color-primary: #f3f3f3;
|
||||
--font-color-primary: #3d3d3d;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
@import 'reset';
|
||||
@import 'variables';
|
||||
@import 'fonts';
|
||||
|
||||
html, body, #__nuxt {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--background-color-primary);
|
||||
color: var(--font-color-primary);
|
||||
font-family: Formular, Helvetica, Arial, sans-serif;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div>
|
||||
<Head>
|
||||
<Title>Главная</Title>
|
||||
</Head>
|
||||
<h1>Hello, Nuxt ✌</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
div {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="256px" height="172px" viewBox="0 0 256 172" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||
<title>NuxtJS</title>
|
||||
<g>
|
||||
<path d="M112.973416,9.2496789 C105.800602,-3.0832263 87.8689954,-3.0832263 80.6961815,9.2496789 L2.52446046,143.659628 C-4.64826776,155.992961 4.3176211,171.408985 18.6631204,171.408985 L79.688321,171.408985 C73.5584906,166.051862 71.2883417,156.784087 75.9271555,148.832569 L135.130926,47.3479175 L112.973416,9.2496789 Z" fill="#80EEC0"></path>
|
||||
<path d="M162.504638,38.7329166 C168.440863,28.6423189 183.280784,28.6423189 189.217009,38.7329166 L253.910685,148.704498 C259.84691,158.795096 252.42695,171.408557 240.554499,171.408557 L111.167148,171.408557 C99.295126,171.408557 91.8747374,158.795096 97.8109626,148.704498 L162.504638,38.7329166 Z" fill="#00DC82"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 947 B |
@@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Allow: /
|
||||
Reference in New Issue
Block a user