mirror of
https://github.com/yusufipk/nexter-react.git
synced 2026-09-11 17:46:07 +00:00
init project
This commit is contained in:
-38
@@ -1,38 +0,0 @@
|
||||
.App {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 40vmin;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
.App-logo {
|
||||
animation: App-logo-spin infinite 20s linear;
|
||||
}
|
||||
}
|
||||
|
||||
.App-header {
|
||||
background-color: #282c34;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: calc(10px + 2vmin);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.App-link {
|
||||
color: #61dafb;
|
||||
}
|
||||
|
||||
@keyframes App-logo-spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
+2
-20
@@ -1,25 +1,7 @@
|
||||
import logo from './logo.svg';
|
||||
import './App.css';
|
||||
import "./sass/main.scss";
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div className="App">
|
||||
<header className="App-header">
|
||||
<img src={logo} className="App-logo" alt="logo" />
|
||||
<p>
|
||||
Edit <code>src/App.js</code> and save to reload.
|
||||
</p>
|
||||
<a
|
||||
className="App-link"
|
||||
href="https://reactjs.org"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Learn React
|
||||
</a>
|
||||
</header>
|
||||
</div>
|
||||
);
|
||||
return <div></div>;
|
||||
}
|
||||
|
||||
export default App;
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
// COLOR VARIABLES
|
||||
$color-primary: #c69963;
|
||||
$color-primary-dark: #b28451;
|
||||
|
||||
$color-secondary: #101d2c;
|
||||
|
||||
$color-grey-light-1: #f9f7f6;
|
||||
$color-grey-light-2: #aaa;
|
||||
|
||||
$color-grey-dark-1: #54483a;
|
||||
$color-grey-dark-2: #6d5d4b;
|
||||
|
||||
// FONT VARIABLES
|
||||
$font-primary: "Nunito", sans-serif;
|
||||
$font-display: "Josefin Sans", sans-serif;
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
font-size: 62.5%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: $font-primary;
|
||||
color: $color-grey-dark-2;
|
||||
font-weight: 300;
|
||||
line-height: 1.6;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
@import "base";
|
||||
@import "typography";
|
||||
|
||||
@import "sidebar";
|
||||
@import "header";
|
||||
@import "realtors";
|
||||
@import "features";
|
||||
@import "story";
|
||||
@import "homes";
|
||||
@import "gallery";
|
||||
@import "footer";
|
||||
Reference in New Issue
Block a user