Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 293f1653 authored by peter_rabbit's avatar peter_rabbit
Browse files

svg icon

parent 0cf26c74
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<title>Kuadrado Software - games</title> <title>Kuadrado Software - games</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link href="../../style/style.css" rel="stylesheet" /> <link href="../../style/style.css" rel="stylesheet" />
</head> </head>
<body> <body>
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>Kuadrado Software</title> <title>Kuadrado Software</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link href="../style/style.css" rel="stylesheet" /> <link href="../style/style.css" rel="stylesheet" />
</head> </head>
<body> <body>
......
...@@ -154,7 +154,7 @@ module.exports = function runPage(PageComponent) { ...@@ -154,7 +154,7 @@ module.exports = function runPage(PageComponent) {
const { images_url } = require("../../../constants"); const { images_url } = require("../../../constants");
const HOME_LOGO = "logo_kuadrado_s32.png"; const HOME_LOGO = "logo_kuadrado.svg";
const NAV_MENU_ITEMS = [ const NAV_MENU_ITEMS = [
["/public/games/", "Jeux"], ["/public/games/", "Jeux"],
["/public/software-development/", "Software"], ["/public/software-development/", "Software"],
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<title>Kuadrado Software - software-development</title> <title>Kuadrado Software - software-development</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link href="../../style/style.css" rel="stylesheet" /> <link href="../../style/style.css" rel="stylesheet" />
</head> </head>
<body> <body>
......
...@@ -154,7 +154,7 @@ module.exports = function runPage(PageComponent) { ...@@ -154,7 +154,7 @@ module.exports = function runPage(PageComponent) {
const { images_url } = require("../../../constants"); const { images_url } = require("../../../constants");
const HOME_LOGO = "logo_kuadrado_s32.png"; const HOME_LOGO = "logo_kuadrado.svg";
const NAV_MENU_ITEMS = [ const NAV_MENU_ITEMS = [
["/public/games/", "Jeux"], ["/public/games/", "Jeux"],
["/public/software-development/", "Software"], ["/public/software-development/", "Software"],
......
...@@ -74,7 +74,8 @@ ...@@ -74,7 +74,8 @@
flex-wrap: wrap; flex-wrap: wrap;
li.learning-theme { li.learning-theme {
position: relative; position: relative;
box-shadow: 3px 3px 5px 1px #0003; border: solid $light_0;
border-width: 0 2px 2px 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.title { .title {
...@@ -89,7 +90,7 @@ ...@@ -89,7 +90,7 @@
height: auto; height: auto;
} }
.details { .details {
background-color: #fffc; background-color: #fffe;
position: absolute; position: absolute;
top: 40px; top: 40px;
left: 40px; left: 40px;
...@@ -100,8 +101,8 @@ ...@@ -100,8 +101,8 @@
z-index: 1; z-index: 1;
transition: max-height 0.6s; transition: max-height 0.6s;
padding: 20px; padding: 20px;
border-right: 1px solid $light_0; border: solid $light_0;
border-bottom: 1px solid $light_0; border-width: 0 1px 1px 0;
overflow: hidden; overflow: hidden;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
......
...@@ -27,7 +27,6 @@ body { ...@@ -27,7 +27,6 @@ body {
main { main {
background: url("../assets/images/wallpaper_binary_white.png"); background: url("../assets/images/wallpaper_binary_white.png");
background-size: 20%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
const { images_url } = require("../../../constants"); const { images_url } = require("../../../constants");
const HOME_LOGO = "logo_kuadrado_s32.png"; const HOME_LOGO = "logo_kuadrado.svg";
const NAV_MENU_ITEMS = [ const NAV_MENU_ITEMS = [
["/public/games/", "Jeux"], ["/public/games/", "Jeux"],
["/public/software-development/", "Software"], ["/public/software-development/", "Software"],
......
$dark_1: #35393c; $dark_1: #35393c;
$dark_2: #3c4144; $dark_2: #3c4144;
$dark_3: #555d61; $dark_3: #555d61;
$light_0: #d8e1e7; $light_0: #d4d9dd;
$light_1: #96a5ae; $light_1: #96a5ae;
$light_2: #aabbc8; $light_2: #aabbc8;
$magenta: #ff00ff; $magenta: #ff00ff;
...@@ -14,7 +14,7 @@ $blue_3: #17cff0; ...@@ -14,7 +14,7 @@ $blue_3: #17cff0;
$red_1: #9c3030; $red_1: #9c3030;
$red_2: #e74949; $red_2: #e74949;
$yellow_1: #e5a002; $yellow_1: #e5a002;
$yellow_2: #ffe600; $yellow_2: #ffd000;
// screen thresholds // screen thresholds
$screen_l: 900px; $screen_l: 900px;
......
...@@ -24,7 +24,6 @@ body blue { ...@@ -24,7 +24,6 @@ body blue {
main { main {
background: url("../assets/images/wallpaper_binary_white.png"); background: url("../assets/images/wallpaper_binary_white.png");
background-size: 20%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
...@@ -205,7 +204,7 @@ main #page-container #education-page .section-contents .practical-infos { ...@@ -205,7 +204,7 @@ main #page-container #education-page .section-contents .practical-infos {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 40px; gap: 40px;
background-color: #d8e1e7; background-color: #d4d9dd;
padding: 30px; padding: 30px;
} }
main #page-container #education-page .section-contents .practical-infos .info-item { main #page-container #education-page .section-contents .practical-infos .info-item {
...@@ -230,7 +229,8 @@ main #page-container #education-page .section-contents ul.learning-themes { ...@@ -230,7 +229,8 @@ main #page-container #education-page .section-contents ul.learning-themes {
} }
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme { main #page-container #education-page .section-contents ul.learning-themes li.learning-theme {
position: relative; position: relative;
box-shadow: 3px 3px 5px 1px #0003; border: solid #d4d9dd;
border-width: 0 2px 2px 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
...@@ -246,7 +246,7 @@ main #page-container #education-page .section-contents ul.learning-themes li.lea ...@@ -246,7 +246,7 @@ main #page-container #education-page .section-contents ul.learning-themes li.lea
height: auto; height: auto;
} }
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details { main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .details {
background-color: #fffc; background-color: #fffe;
position: absolute; position: absolute;
top: 40px; top: 40px;
left: 40px; left: 40px;
...@@ -257,8 +257,8 @@ main #page-container #education-page .section-contents ul.learning-themes li.lea ...@@ -257,8 +257,8 @@ main #page-container #education-page .section-contents ul.learning-themes li.lea
z-index: 1; z-index: 1;
transition: max-height 0.6s; transition: max-height 0.6s;
padding: 20px; padding: 20px;
border-right: 1px solid #d8e1e7; border: solid #d4d9dd;
border-bottom: 1px solid #d8e1e7; border-width: 0 1px 1px 0;
overflow: hidden; overflow: hidden;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -279,7 +279,7 @@ main #page-container #education-page .section-contents ul.learning-themes li.lea ...@@ -279,7 +279,7 @@ main #page-container #education-page .section-contents ul.learning-themes li.lea
main #page-container #education-page .section-contents .infos-inscriptions { main #page-container #education-page .section-contents .infos-inscriptions {
display: flex; display: flex;
gap: 40px; gap: 40px;
background-color: #d8e1e7; background-color: #d4d9dd;
padding: 30px; padding: 30px;
} }
main #page-container #education-page .section-contents .infos-inscriptions .groups, main #page-container #education-page .section-contents .infos-inscriptions .groups,
......
{"version":3,"sourceRoot":"","sources":["../src/style.scss","../src/theme.scss","../src/pages/education/education.scss"],"names":[],"mappings":"AAEA;EAKI;EACA;;AALA;EACI;EACA,OCLC;;ADSL;EACI;EACA;EACA;;AAEJ;EACI,OCJC;EDKD;;AACA;EACI,OCNH;;ADUL;EACI,OCZC;;;ADgBT;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA,QCZI;;ADaJ;EACI;;AACA;EACI;;AAGR;EACI;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA;EACA;EACA,OCtDd;EDuDc;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI,OC7EnB;ED8EmB;;AAIJ;EACI,OCnFnB;;ADsFe;EACI;EACA;;AACA;EACI,OCvFtB;EDwFsB;;AAII;EACI,OChG/B;;ADwGG;EACI;;AAEJ;EAxEJ;IAyEQ;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,OCxHX;IDyHW;;EAEJ;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA,KC1GR;ID2GQ;IACA;IACA;;EAGQ;IACI;;EAGR;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAQA;;EANI;IACI;IACA;IACA,OCxJ9B;;;ADmKN;EACI;EACA;EACA;EACA;;AE1KJ;EACI;EACA;;AAGA;EACI;;AAGR;EACI;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EAOA;EACA;EACA;;AARA;EACI;;AAEJ;EACI;;AAKJ;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA,kBDjDF;ECkDE;;AACA;EACI;EACA;EACA;EACA;;AACA;EACI;;AAEJ;AAAA;EAEI;;AAIZ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AACA;EACI,OD/EX;ECgFW;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;;AAIJ;EACI;EACA;;AAMhB;EACI;EACA;EACA,kBD9HF;EC+HE;;AACA;AAAA;EAEI;EACA;EACA;EACA;;AACA;AAAA;EACI;;AAGA;AAAA;EACI;EACA;;AACA;AAAA;EACI;EACA;;AAOxB;EAEQ;IACI;;EACA;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EACA;IACI;;EAEJ;IACI;IACA;IACA;;EACA;IACI,OD/KvB;;;ACwLL;EACI;IACI;IACA;;EAGA;IACI;;EAGR;IACI;IACA;;EAEJ;IACI;IACA;;EACA;IACI;IACA;IACA;;EAGR;IACI;IACA;;EACA;IACI;;EAEJ;IACI;IACA;IACA;IACA;;EAEJ;IACI;IACA;IACA;;EACA;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEI;IACI,OD7OvB;;ECoPG;IACI;IACA;IACA;IACA;;EACA;AAAA;IAEI;IACA;IACA;IACA;;EAEI;AAAA;IACI;;EACA;AAAA;IACI;IACA;;;AFxF5B;EACI;EACA;EACA","file":"style.css"} {"version":3,"sourceRoot":"","sources":["../src/style.scss","../src/theme.scss","../src/pages/education/education.scss"],"names":[],"mappings":"AAEA;EAKI;EACA;;AALA;EACI;EACA,OCLC;;ADSL;EACI;EACA;EACA;;AAEJ;EACI,OCJC;EDKD;;AACA;EACI,OCNH;;ADUL;EACI,OCZC;;;ADgBT;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA,QCXI;;ADYJ;EACI;;AACA;EACI;;AAGR;EACI;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;EACA;EACA;EACA;EACA,OCrDd;EDsDc;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI,OC5EnB;ED6EmB;;AAIJ;EACI,OClFnB;;ADqFe;EACI;EACA;;AACA;EACI,OCtFtB;EDuFsB;;AAII;EACI,OC/F/B;;ADuGG;EACI;;AAEJ;EAxEJ;IAyEQ;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,OCvHX;IDwHW;;EAEJ;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA,KCzGR;ID0GQ;IACA;IACA;;EAGQ;IACI;;EAGR;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAQA;;EANI;IACI;IACA;IACA,OCvJ9B;;;ADkKN;EACI;EACA;EACA;EACA;;AEzKJ;EACI;EACA;;AAGA;EACI;;AAGR;EACI;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EAOA;EACA;EACA;;AARA;EACI;;AAEJ;EACI;;AAKJ;EACI;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA,kBDjDF;ECkDE;;AACA;EACI;EACA;EACA;EACA;;AACA;EACI;;AAEJ;AAAA;EAEI;;AAIZ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EACI,ODhFX;ECiFW;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;;AAIJ;EACI;EACA;;AAMhB;EACI;EACA;EACA,kBD/HF;ECgIE;;AACA;AAAA;EAEI;EACA;EACA;EACA;;AACA;AAAA;EACI;;AAGA;AAAA;EACI;EACA;;AACA;AAAA;EACI;EACA;;AAOxB;EAEQ;IACI;;EACA;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EACA;IACI;;EAEJ;IACI;IACA;IACA;;EACA;IACI,ODhLvB;;;ACyLL;EACI;IACI;IACA;;EAGA;IACI;;EAGR;IACI;IACA;;EAEJ;IACI;IACA;;EACA;IACI;IACA;IACA;;EAGR;IACI;IACA;;EACA;IACI;;EAEJ;IACI;IACA;IACA;IACA;;EAEJ;IACI;IACA;IACA;;EACA;IACI;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEI;IACI,OD9OvB;;ECqPG;IACI;IACA;IACA;IACA;;EACA;AAAA;IAEI;IACA;IACA;IACA;;EAEI;AAAA;IACI;;EACA;AAAA;IACI;IACA;;;AF1F5B;EACI;EACA;EACA","file":"style.css"}
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment