create the nav
This commit is contained in:
parent
aef0af64b6
commit
2dcd50d361
|
@ -8,6 +8,7 @@ import store from './store/configureStore';
|
||||||
import Header from "./components/Header";
|
import Header from "./components/Header";
|
||||||
import Footer from "./components/Footer";
|
import Footer from "./components/Footer";
|
||||||
import Search from "./components/Search";
|
import Search from "./components/Search";
|
||||||
|
import Nav from "./components/Nav";
|
||||||
|
|
||||||
class App extends Component {
|
class App extends Component {
|
||||||
render() {
|
render() {
|
||||||
|
@ -19,6 +20,7 @@ class App extends Component {
|
||||||
<Search/>
|
<Search/>
|
||||||
<Route exact={true} path="/" component={Home}/>
|
<Route exact={true} path="/" component={Home}/>
|
||||||
<Route path="/topics" component={TopicsList}/>
|
<Route path="/topics" component={TopicsList}/>
|
||||||
|
<Nav/>
|
||||||
<Footer/>
|
<Footer/>
|
||||||
</div>
|
</div>
|
||||||
</Provider>
|
</Provider>
|
||||||
|
|
49
src/components/Nav.js
Normal file
49
src/components/Nav.js
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
class Nav extends React.Component {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="">
|
||||||
|
<span className="arabic-text">اتصل بنا</span>
|
||||||
|
<br/>
|
||||||
|
<span className="english-text"> contact us</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="">
|
||||||
|
<span className="arabic-text">دليل توجيهي</span>
|
||||||
|
<br/>
|
||||||
|
<span className="english-text"> tutorials</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="">
|
||||||
|
<span className="arabic-text">الرئيسية</span>
|
||||||
|
<br/>
|
||||||
|
<span className="english-text"> main</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="">
|
||||||
|
<span className="arabic-text">الأرشيف</span>
|
||||||
|
<br/>
|
||||||
|
<span className="english-text"> the archive</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="">
|
||||||
|
<span className="arabic-text">ماهذا الشيء</span>
|
||||||
|
<br/>
|
||||||
|
<span className="english-text"> what is this</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (Nav);
|
|
@ -91,16 +91,19 @@ header {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
color: gray;
|
color: gray;
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 700px){
|
|
||||||
|
@media screen and (max-width: 700px) {
|
||||||
.search-box::placeholder {
|
.search-box::placeholder {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 400px){
|
|
||||||
|
@media screen and (max-width: 400px) {
|
||||||
.search-box::placeholder {
|
.search-box::placeholder {
|
||||||
font-size: .75em;
|
font-size: .75em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Video item*/
|
/* Video item*/
|
||||||
.video-thumbnail {
|
.video-thumbnail {
|
||||||
max-width: 300px;
|
max-width: 300px;
|
||||||
|
@ -123,8 +126,9 @@ header {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* footer */
|
/* footer */
|
||||||
footer{
|
footer {
|
||||||
background: var(--858-light-gray-color);
|
background: var(--858-light-gray-color);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -132,4 +136,25 @@ footer{
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* nav */
|
||||||
|
nav {
|
||||||
|
margin: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li {
|
||||||
|
display: inline-block;
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 1em;
|
||||||
|
border-right: 1px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li:last-child {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user