diff --git a/front/style/home.css b/front/style/home.css index 9188257..156e3f4 100644 --- a/front/style/home.css +++ b/front/style/home.css @@ -1,4 +1,7 @@ +body { + background-color: #f8f8f1; +} #main { margin-left : 10%; margin-right: 10%; @@ -15,20 +18,25 @@ #header { text-align: center; - background-color: green; + background-color: #303030; margin : 0px; + /* border-radius: 0.75cap; */ } +#IQBall { + color : #ffa238; + font-weight: bold; + font-size : 45px; +} #body { display: flex; flex-direction: row; - border : solid 10px violet; margin:0px; height: 100%; + background-color: #fff3e5; } #personal-space { - background-color: orange; display: flex; flex-direction: column; @@ -102,7 +110,7 @@ } .dataTactic:hover { - background-color: red; + background-color: #c9d1e0; cursor : pointer; } @@ -133,6 +141,6 @@ ul { } .ButtonSideMenu:hover { - background-color: red; + background-color: #c9d1e0; cursor : pointer; } diff --git a/front/views/Home.tsx b/front/views/Home.tsx index 07f44a8..605e0e3 100644 --- a/front/views/Home.tsx +++ b/front/views/Home.tsx @@ -28,7 +28,7 @@ export default function Home({ lastTactics, allTactics, teams } : { lastTactics export function Title() { return ( ) }