Split Styles for modules into separate files
This commit is contained in:
parent
f27f11e7c2
commit
ac8ca1f886
@ -1,4 +1,5 @@
|
|||||||
import React from 'react';
|
import React, {useEffect} from 'react';
|
||||||
|
import '../styles/footer.css';
|
||||||
|
|
||||||
export default function Footer(){
|
export default function Footer(){
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import '../styles/header.css'
|
||||||
|
|
||||||
export default function Header(){
|
export default function Header(){
|
||||||
return (
|
return (
|
||||||
|
@ -3,6 +3,7 @@ import {MangaConnector} from "./MangaConnector";
|
|||||||
import IMangaConnector from "./interfaces/IMangaConnector";
|
import IMangaConnector from "./interfaces/IMangaConnector";
|
||||||
import {isValidUri} from "../App";
|
import {isValidUri} from "../App";
|
||||||
import IManga, {HTMLFromIManga} from "./interfaces/IManga";
|
import IManga, {HTMLFromIManga} from "./interfaces/IManga";
|
||||||
|
import '../styles/search.css';
|
||||||
|
|
||||||
export default function Search(){
|
export default function Search(){
|
||||||
const [mangaConnectors, setConnectors] = useState<IMangaConnector[]>();
|
const [mangaConnectors, setConnectors] = useState<IMangaConnector[]>();
|
||||||
@ -104,7 +105,10 @@ export default function Search(){
|
|||||||
<div>
|
<div>
|
||||||
{searchResults === undefined
|
{searchResults === undefined
|
||||||
? <p>No Results yet</p>
|
? <p>No Results yet</p>
|
||||||
: searchResults.map(result => HTMLFromIManga(result))}
|
: searchResults.map(result => <div key={"searchResult."+result.internalId} className="searchResult">
|
||||||
|
{HTMLFromIManga(result)}
|
||||||
|
<button onClick={(e) => {Job.CreateJob(result.internalId, "MonitorManga", "03:00:00")}}>Monitor</button>
|
||||||
|
</div>)}
|
||||||
</div>
|
</div>
|
||||||
</div>)
|
</div>)
|
||||||
}
|
}
|
21
Website/styles/footer.css
Normal file
21
Website/styles/footer.css
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
footer {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
width: 100%;
|
||||||
|
height: 40px;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background-color: var(--primary-color);
|
||||||
|
align-content: center;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#madeWith {
|
||||||
|
flex-grow: 1;
|
||||||
|
text-align: right;
|
||||||
|
margin-right: 20px;
|
||||||
|
cursor: url("Website/media/blahaj.png"), grab;
|
||||||
|
}
|
32
Website/styles/header.css
Normal file
32
Website/styles/header.css
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height: var(--topbar-height);
|
||||||
|
background-color: var(--secondary-color);
|
||||||
|
z-index: 100;
|
||||||
|
box-shadow: 0 0 20px black;
|
||||||
|
}
|
||||||
|
|
||||||
|
header > #titlebox {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
margin: 0 0 0 40px;
|
||||||
|
height: 100%;
|
||||||
|
align-items:center;
|
||||||
|
justify-content:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
header > #titlebox > span{
|
||||||
|
cursor: default;
|
||||||
|
font-size: 24pt;
|
||||||
|
font-weight: bold;
|
||||||
|
background: linear-gradient(150deg, var(--primary-color), var(--accent-color));
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header > #titlebox > img {
|
||||||
|
height: 100%;
|
||||||
|
cursor: grab;
|
||||||
|
}
|
@ -22,57 +22,3 @@ body{
|
|||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
height: var(--topbar-height);
|
|
||||||
background-color: var(--secondary-color);
|
|
||||||
z-index: 100;
|
|
||||||
box-shadow: 0 0 20px black;
|
|
||||||
}
|
|
||||||
|
|
||||||
header > #titlebox {
|
|
||||||
position: relative;
|
|
||||||
display: flex;
|
|
||||||
margin: 0 0 0 40px;
|
|
||||||
height: 100%;
|
|
||||||
align-items:center;
|
|
||||||
justify-content:center;
|
|
||||||
}
|
|
||||||
|
|
||||||
header > #titlebox > span{
|
|
||||||
cursor: default;
|
|
||||||
font-size: 24pt;
|
|
||||||
font-weight: bold;
|
|
||||||
background: linear-gradient(150deg, var(--primary-color), var(--accent-color));
|
|
||||||
-webkit-background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header > #titlebox > img {
|
|
||||||
height: 100%;
|
|
||||||
cursor: grab;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
width: 100%;
|
|
||||||
height: 40px;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
background-color: var(--primary-color);
|
|
||||||
align-content: center;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#madeWith {
|
|
||||||
flex-grow: 1;
|
|
||||||
text-align: right;
|
|
||||||
margin-right: 20px;
|
|
||||||
cursor: url("Website/media/blahaj.png"), grab;
|
|
||||||
}
|
|
3
Website/styles/search.css
Normal file
3
Website/styles/search.css
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.searchResult{
|
||||||
|
background-color: var(--second-background-color);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user