diff --git a/assets/_colors.scss b/assets/_colors.scss new file mode 100644 index 0000000..db2da17 --- /dev/null +++ b/assets/_colors.scss @@ -0,0 +1,5 @@ +$c-background: #212121; +$c-text: white; +$c-primary: #C64647; +$c-secondary: white; +$c-link: #25acd7; diff --git a/assets/_responsive.scss b/assets/_responsive.scss new file mode 100644 index 0000000..e6d8856 --- /dev/null +++ b/assets/_responsive.scss @@ -0,0 +1,8 @@ +$desktop-min-breakpoint: 640px; +$mobile-max-breakpoint: $desktop-min-breakpoint - 1px; + +@mixin desktop { + @media only screen and (min-width: 640px) { + @content + } +} diff --git a/assets/global.scss b/assets/global.scss index a658398..48f1bcc 100644 --- a/assets/global.scss +++ b/assets/global.scss @@ -12,6 +12,7 @@ body { font-size: 16px; background-color: $c-background; + color: $c-text } *, @@ -28,6 +29,7 @@ a { } .button { + display: inline-block; border: 2px solid white; width: fit-content; padding: 10px; diff --git a/components/CodingProject.vue b/components/CodingProject.vue new file mode 100644 index 0000000..6793e55 --- /dev/null +++ b/components/CodingProject.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/layouts/secondLevel.vue b/layouts/secondLevel.vue new file mode 100644 index 0000000..e9bc809 --- /dev/null +++ b/layouts/secondLevel.vue @@ -0,0 +1,49 @@ + + + + + diff --git a/pages/index.vue b/pages/index.vue index 7756304..73f0958 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -1,5 +1,5 @@ + +