mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-06 15:18:48 +00:00
add folder structure to Typescript and CSS file
This commit is contained in:
parent
912b0a2b4c
commit
796eacb802
4 changed files with 10 additions and 10 deletions
|
@ -1,9 +1,9 @@
|
|||
import "./App.css";
|
||||
import "./colors.css";
|
||||
import "./fonts.css";
|
||||
import LoginAndSignUpPage from "./LoginAndSignUpPage";
|
||||
import Footer from "./Footer";
|
||||
import Header from "./header";
|
||||
import "./styles/colors.css";
|
||||
import "./styles/fonts.css";
|
||||
import LoginAndSignUpPage from "./pages/LoginAndSignUpPage";
|
||||
import Footer from "./components/Footer";
|
||||
import Header from "./components/header";
|
||||
|
||||
function App() {
|
||||
return (
|
||||
|
|
|
@ -143,7 +143,7 @@
|
|||
|
||||
border-radius: 8px;
|
||||
border: 5px solid var(--Rotkehlchen-gray);
|
||||
background-image: url("../public/assets/images/IceBirdLogin.jpg");
|
||||
background-image: url("../../public/assets/images/IceBirdLogin.jpg");
|
||||
background-size: cover;
|
||||
background-position: 75%;
|
||||
}
|
||||
|
@ -159,7 +159,7 @@
|
|||
|
||||
border-radius: 8px;
|
||||
border: 5px solid var(--Rotkehlchen-gray);
|
||||
background-image: url("../public/assets/images/SummerOwlSignup.jpg");
|
||||
background-image: url("../../public/assets/images/SummerOwlSignup.jpg");
|
||||
background-size: cover;
|
||||
/*background-position: 75%;*/
|
||||
}
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
--Rotkehlchen-yellow-default: #FED640;
|
||||
--Rotkehlchen-yellow-hover: #EAC22A;
|
||||
--Rotkehlchen-orange-default: #e79a0e;
|
||||
--gradient-blue-backround-mobile: linear-gradient(270deg, rgba(20, 15, 86, 0.27) 0%, rgba(20, 15, 86, 0.58) 24%, rgba(20, 15, 86, 0.74) 43%, rgba(17, 13, 71, 0.82) 56%, rgba(13, 10, 56, 0.90) 68%), url('../public/assets/images/BirdsSky.jpg') lightgray 50% / cover no-repeat;
|
||||
--gradient-blue-backround-mobile: linear-gradient(270deg, rgba(20, 15, 86, 0.27) 0%, rgba(20, 15, 86, 0.58) 24%, rgba(20, 15, 86, 0.74) 43%, rgba(17, 13, 71, 0.82) 56%, rgba(13, 10, 56, 0.90) 68%), url('../../public/assets/images/BirdsSky.jpg') lightgray 50% / cover no-repeat;
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
font-family: "Lora";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(../public/assets/fonts/Lora/Lora-VariableFont_wght.ttf);
|
||||
src: url(../../public/assets/fonts/Lora/Lora-VariableFont_wght.ttf);
|
||||
unicode-range: U+00-52F, U+1E00-1FFF, U+2200-22FF;
|
||||
}
|
||||
.title-h1 {
|
||||
|
@ -32,7 +32,7 @@ h1 {
|
|||
@font-face {
|
||||
font-family: "Inter";
|
||||
font-style: normal;
|
||||
src: url(../public/assets/fonts/Inter/static/Inter_24pt-Medium.ttf);
|
||||
src: url(../../public/assets/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf);
|
||||
}
|
||||
.body-l,
|
||||
.body-m {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue