2023-01-24 18:37:38 +01:00
|
|
|
/* Custom Obelix font definition : */
|
2022-04-08 14:55:04 +02:00
|
|
|
@font-face{
|
2023-04-16 14:58:05 +02:00
|
|
|
font-family: "Lapsus Pro Bold";
|
|
|
|
src: url("../fonts/lapsus-pro.ttf");
|
2022-04-08 14:55:04 +02:00
|
|
|
}
|
|
|
|
|
2022-04-09 19:08:39 +02:00
|
|
|
*, *::before, *::after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2023-04-22 18:47:14 +02:00
|
|
|
.zone_txt {
|
|
|
|
display: block;
|
|
|
|
background-color: rgba(88, 159, 218, 0.798);
|
2023-04-28 18:14:12 +02:00
|
|
|
width: 90vw;
|
2023-04-22 18:47:14 +02:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2023-04-28 18:14:12 +02:00
|
|
|
padding: 5vw;
|
|
|
|
font-size: 2rem;
|
2023-04-22 18:47:14 +02:00
|
|
|
margin-top: 40px;
|
|
|
|
border-radius: 15px;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2022-04-09 19:08:39 +02:00
|
|
|
html {
|
|
|
|
font-size: 20px;
|
2023-01-24 18:37:38 +01:00
|
|
|
|
2022-04-09 19:08:39 +02:00
|
|
|
}
|
2022-04-08 14:55:04 +02:00
|
|
|
|
2022-04-08 13:13:19 +02:00
|
|
|
body {
|
2023-04-16 14:58:05 +02:00
|
|
|
font-family: 'Lapsus Pro Bold';
|
2022-06-13 16:13:52 +02:00
|
|
|
|
2022-04-09 19:08:39 +02:00
|
|
|
font-size: 1rem;
|
|
|
|
|
|
|
|
padding: 0; margin: 0;
|
2022-06-11 21:02:30 +02:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-height: 100vh;
|
2022-06-13 16:13:52 +02:00
|
|
|
|
|
|
|
background-attachment: fixed;
|
2023-04-28 18:14:12 +02:00
|
|
|
background-color: #ffffff;
|
2023-04-30 20:42:53 +02:00
|
|
|
background-image: url("https://etud.insa-toulouse.fr/~mougnibas/accueil_2023/assets/img/background.svg");
|
2022-06-13 16:13:52 +02:00
|
|
|
}
|
|
|
|
|
2023-04-28 18:14:12 +02:00
|
|
|
/* papier peint pour petits écrans (smartphones) */
|
|
|
|
@media all and (max-width: 800px) {
|
|
|
|
|
|
|
|
body {
|
2023-04-30 20:42:53 +02:00
|
|
|
background-image: url("https://etud.insa-toulouse.fr/~mougnibas/accueil_2023/assets/img/asterix.svg");
|
2023-04-28 18:14:12 +02:00
|
|
|
background-repeat: space;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-08 14:42:53 +02:00
|
|
|
|
|
|
|
main {
|
2022-04-09 13:35:13 +02:00
|
|
|
text-align: center;
|
2022-04-09 17:24:25 +02:00
|
|
|
height: 100%;
|
2022-04-08 14:42:53 +02:00
|
|
|
}
|
|
|
|
|
2022-04-09 14:01:25 +02:00
|
|
|
a.link {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #FFDC00;
|
|
|
|
-webkit-text-stroke: 1px black;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.link:hover {
|
|
|
|
color: white;
|
|
|
|
-webkit-text-stroke: 1px white;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.linkmail {
|
|
|
|
font-family: arial, sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #FFDC00;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.linkmail:hover {
|
|
|
|
color: white;
|
|
|
|
-webkit-text-stroke: 1px white;
|
|
|
|
}
|
|
|
|
|
2023-01-22 12:46:06 +01:00
|
|
|
/* BEGIN PANCARTE */
|
|
|
|
.pancarte {
|
2022-04-08 14:42:53 +02:00
|
|
|
display: inline-block;
|
2022-04-17 16:18:38 +02:00
|
|
|
position: relative;
|
2022-04-08 14:42:53 +02:00
|
|
|
padding: 10px;
|
2022-04-09 19:08:39 +02:00
|
|
|
margin: 40px 10vw 0;
|
2022-04-17 16:18:38 +02:00
|
|
|
font-size: 2.5px;
|
|
|
|
|
2023-01-22 12:46:06 +01:00
|
|
|
background-color: #a06827;
|
|
|
|
border-top: solid 2em #a06827;
|
|
|
|
border-left: solid 2em #a06827;
|
|
|
|
border-right: solid 2em #a06827;
|
|
|
|
border-bottom: solid 2em #332806;
|
2022-04-17 16:18:38 +02:00
|
|
|
|
2023-01-22 12:46:06 +01:00
|
|
|
border-radius: 10px;
|
2022-04-17 16:18:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-29 15:39:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
ajoute une petite marge au dessus de la pancarte sur mobile pour laisser
|
|
|
|
de la place a la navbar
|
|
|
|
|
|
|
|
ajuste aussi la taille du texte de la pancarte
|
|
|
|
*/
|
|
|
|
@media all and (max-width: 800px) {
|
|
|
|
|
|
|
|
.pancarte{
|
|
|
|
margin-top: 10vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-22 12:46:06 +01:00
|
|
|
.pancarte .title {
|
2022-04-17 16:18:38 +02:00
|
|
|
padding: 3vw 4.5vw;
|
2022-04-08 17:42:31 +02:00
|
|
|
color: black;
|
2022-04-17 16:18:38 +02:00
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circles-top {
|
|
|
|
top: 3em;
|
2022-04-08 14:42:53 +02:00
|
|
|
}
|
|
|
|
|
2022-04-17 16:18:38 +02:00
|
|
|
.circles-bottom {
|
|
|
|
bottom: 3em;
|
2022-04-08 14:42:53 +02:00
|
|
|
}
|
|
|
|
|
2022-04-17 16:18:38 +02:00
|
|
|
.circles::after,
|
|
|
|
.circles::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
top: inherit;
|
|
|
|
bottom: inherit;
|
|
|
|
border-radius: 100%;
|
|
|
|
background: black;
|
|
|
|
opacity: .9;
|
2022-04-08 14:42:53 +02:00
|
|
|
}
|
|
|
|
|
2022-04-17 16:18:38 +02:00
|
|
|
.circles::before {
|
|
|
|
left: 3em;
|
2022-04-08 13:13:19 +02:00
|
|
|
}
|
|
|
|
|
2022-04-17 16:18:38 +02:00
|
|
|
.circles::after {
|
|
|
|
right: 3em;
|
|
|
|
}
|
|
|
|
|
2023-01-22 12:46:06 +01:00
|
|
|
/** END PANCARTE **/
|
2022-04-17 16:18:38 +02:00
|
|
|
|
2022-04-09 12:55:13 +02:00
|
|
|
.menu_space_bottom {
|
|
|
|
position: sticky;
|
2022-04-05 21:56:56 +02:00
|
|
|
width: 100%;
|
2022-04-09 12:55:13 +02:00
|
|
|
opacity: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2022-04-08 17:42:31 +02:00
|
|
|
}
|
|
|
|
|
2022-06-11 21:02:30 +02:00
|
|
|
.complete-wrapper {
|
|
|
|
flex: 1 0 auto;
|
2022-06-13 16:13:52 +02:00
|
|
|
padding-bottom: 60px;
|
2022-06-11 21:02:30 +02:00
|
|
|
}
|
|
|
|
|
2022-04-09 12:55:13 +02:00
|
|
|
footer {
|
|
|
|
display: block;
|
2022-06-11 21:02:30 +02:00
|
|
|
flex-shrink: 0;
|
2023-01-24 18:37:38 +01:00
|
|
|
background-color: #74c457;
|
2022-06-19 18:48:41 +02:00
|
|
|
background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237ee15e' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
|
2022-06-11 21:02:30 +02:00
|
|
|
border-radius: 20px 20px 0 0;
|
2022-06-19 18:48:41 +02:00
|
|
|
-webkit-box-shadow: 0 0 8px -1px rgba(8, 10, 13, 0.34);
|
|
|
|
box-shadow: 0 0 8px -1px rgba(8, 10, 13, 0.34);
|
2022-06-11 21:02:30 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 50px;
|
|
|
|
font-size: 1rem;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-text-area {
|
2022-04-11 21:46:25 +02:00
|
|
|
width: 80%;
|
|
|
|
max-width: 800px;
|
2022-06-11 21:02:30 +02:00
|
|
|
margin-top: 2vh;
|
2022-04-09 12:55:13 +02:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2023-04-29 15:39:44 +02:00
|
|
|
font-size: 3vh;
|
|
|
|
|
2022-04-09 19:08:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* general purpose css */
|
|
|
|
ul {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-weight: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
overflow: hidden;
|
2022-04-11 21:46:25 +02:00
|
|
|
max-width: 1000px;
|
2022-04-09 19:08:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#main_content {
|
|
|
|
padding-top: 20px;
|
2023-01-22 12:46:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.pc_container{
|
|
|
|
text-align: center;
|
2022-04-05 21:56:56 +02:00
|
|
|
}
|