feat: started site beginning

This commit is contained in:
Rushil Umaretiya 2022-07-31 14:33:29 -04:00
commit 2b2de10f21
18 changed files with 229 additions and 0 deletions

BIN
design/background.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

BIN
design/foreground.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 KiB

BIN
design/text.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

0
site/app.js Normal file
View File

1
site/css/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.map

View File

@ -0,0 +1,7 @@
@mixin desktop
@media (min-width: 786px)
@content
@mixin mobile
@media (max-width: 786px)
@content

View File

@ -0,0 +1,5 @@
html, body
padding: 0
margin: 0
border: 0
box-sizing: border-box

View File

View File

@ -0,0 +1,26 @@
nav
position: fixed
display: flex
flex-direction: column
align-items: center
z-index: 999
margin-left: 45px
height: 100vh
width: 100px
.menu
margin: auto auto
height: 75%
width: 100%
display: flex
flex-direction: column
justify-content: space-between
align-items: center
.box
height: 100px
width: 100%
background-color: #fffdfdb4
border-radius: 25px

View File

@ -0,0 +1,18 @@
*
scrollbar-width: auto
scrollbar-color: #ff887a #e6e6e6
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar
width: 16px
*::-webkit-scrollbar-track
background: #e6e6e6
*::-webkit-scrollbar-thumb
background-color: #ff887a
border-radius: 10px
border: 3px solid #e6e6e6

104
site/css/main.css Normal file
View File

@ -0,0 +1,104 @@
html, body {
padding: 0;
margin: 0;
border: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
nav {
position: fixed;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
z-index: 999;
margin-left: 45px;
height: 100vh;
width: 100px;
}
nav .menu {
margin: auto auto;
height: 75%;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
nav .menu .box {
height: 100px;
width: 100%;
background-color: #fffdfdb4;
border-radius: 25px;
}
* {
scrollbar-width: auto;
scrollbar-color: #ff887a #e6e6e6;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 16px;
}
*::-webkit-scrollbar-track {
background: #e6e6e6;
}
*::-webkit-scrollbar-thumb {
background-color: #ff887a;
border-radius: 10px;
border: 3px solid #e6e6e6;
}
section {
height: 100vh;
}
.hero {
background: #242828;
width: 100%;
}
.hero div {
position: absolute;
height: 100%;
width: 100%;
}
.hero .background {
background: #242828 url("/css/res/img/background.png") bottom no-repeat;
}
.hero .foreground {
background: url("/css/res/img/foreground.png") bottom no-repeat;
}
.hero .text {
position: fixed;
background: url("/css/res/img/text.png") center no-repeat;
}
.intro {
background: yellow;
}
/*# sourceMappingURL=main.css.map */

8
site/css/main.sass Normal file
View File

@ -0,0 +1,8 @@
@import 'abstracts/mixins'
@import 'abstracts/variables'
@import 'abstracts/reset'
@import 'components/nav'
@import 'components/scrollbar'
@import 'pages/home'

26
site/css/pages/_home.sass Normal file
View File

@ -0,0 +1,26 @@
section
height: 100vh
.hero
background: #242828
width: 100%
// position:
div
position: absolute
height: 100%
width: 100%
.background
background: #242828 url('/css/res/img/background.png') bottom no-repeat
.foreground
background: url('/css/res/img/foreground.png') bottom no-repeat
.text
position: fixed
background: url('/css/res/img/text.png') center no-repeat
.intro
background: yellow

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1004 KiB

BIN
site/css/res/img/text.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

34
site/index.html Normal file
View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moore Yoga</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<nav>
<div class="menu">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</nav>
<section class="hero">
<div class="background"></div>
<div class="text">Moore Yoga</div>
<div class="foreground"></div>
</section>
<!-- <section class="intro">
<h1>hi! I'm denise</h1>
</section>
<footer>
<p>&copy; 2022 Moore Yoga</p>
</footer> -->
<script src="app.js"></script>
</body>
</html>