Skip to content

Commit

Permalink
base
Browse files Browse the repository at this point in the history
  • Loading branch information
ElizabethBil committed Sep 29, 2023
1 parent 1833a38 commit 44bd24b
Show file tree
Hide file tree
Showing 27 changed files with 167 additions and 422 deletions.
113 changes: 0 additions & 113 deletions README.pl.md

This file was deleted.

103 changes: 0 additions & 103 deletions README.ro.md

This file was deleted.

Binary file added fonts/manrope-v15-latin-500.woff2
Binary file not shown.
Binary file added fonts/manrope-v15-latin-600.woff2
Binary file not shown.
Binary file added fonts/manrope-v15-latin-regular.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --base=/vanilla-app-template/",
"build": "vite build --base=/project-13/",
"preview": "vite preview"
},
"devDependencies": {
Expand Down
Empty file added src/css/about.css
Empty file.
145 changes: 145 additions & 0 deletions src/css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
/* ==== COMMON ==== */

body {
font-family: 'Manrope', sans-serif;
color: rgba(252, 249, 249, 0.40);
background: #1C2225;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.04em;
}

h1,
h2,
h3,
h4 {
margin-top: 0;
margin-bottom: 0;
}

p {
margin: 0;
}

.list {
text-decoration: none;
}

.link {
text-decoration: none;
}

ul,
ol {
list-style-type: none;
font-style: normal;
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
}

.page-container {
min-height: 100vh;
flex-direction: column;
}

img {
display: block;
}

button {
cursor: pointer;
}

main {
flex-grow: 1;
}

/* ==== CONTAINER ==== */

.container {
width: 375px;
margin-left: auto;
margin-right: auto;
}

@media screen and (min-width: 768px) {
.container {
width: 768px;
}
}

@media screen and (min-width: 1280px) {
.container {
width: 1280px;
}
}

@media screen and (min-width: 1440px) {
.container {
width: 1440px;
}
}

/* ==== SECTION ==== */

.section-title {
color: var(--white, #FCF9F9);
font-family: Manrope;
font-size: 44px;
font-style: normal;
font-weight: 500;
line-height: 1.45;
letter-spacing: -0.03em;
}













/* manrope-regular - latin */
@font-face {
font-display: swap;
/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
src: url('../fonts/manrope-v15-latin-regular.woff2') format('woff2');
/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-500 - latin */
@font-face {
font-display: swap;
/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
src: url('../fonts/manrope-v15-latin-500.woff2') format('woff2');
/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-600 - latin */
@font-face {
font-display: swap;
/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
src: url('../fonts/manrope-v15-latin-600.woff2') format('woff2');
/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




Empty file added src/css/collection.css
Empty file.
Empty file added src/css/footer.css
Empty file.
Empty file added src/css/hero.css
Empty file.
Empty file added src/css/order.css
Empty file.
Loading

0 comments on commit 44bd24b

Please sign in to comment.