Skip to content
Snippets Groups Projects
Commit 27b8b59c authored by Robin VAN DE MERGHEL's avatar Robin VAN DE MERGHEL :computer:
Browse files

Forgot to add changelog

parent d9d3c6cb
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,6 @@
[submodule "Related Personal Projects/project-manager"]
path = Related Personal Projects/project-manager
url = https://gitlab.isima.fr/rovandemer/project-manager
[submodule "Web-Client/Projet"]
path = Web-Client/Projet
url = git@gitlab.isima.fr:mamirade/techno-web-client.git
......@@ -69,3 +69,15 @@ lang: fr
- Redéfinition
- Des exemples de définitions dans plusieurs langages
- **Arrêt page 125**
- 20 février 2023 :
- Redéfinition et surcharge
- Les différences de comportement
- Classes abstraites et interfaces
- Classe abstraites
- Englobement, concept
- Exemple de classe abstraite
- Interfaces
- Concept
- Convetion de nommage
- UML
- Exemple d'interface
\ No newline at end of file
Subproject commit 6dc76bcff4126659506404425847eaa96ab42788
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Salut</title>
<meta lang="fr" http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="author" content="MIRADE Matéu & VAN DE MERGHEL Robin">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anek+Latin:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles/reset.css">
<link rel="stylesheet" type="text/css" href="styles/index.css">
</head>
<body>
<nav id="left-nav" class="deactivated">
<h1 id="nav-title">Navigation</h1>
<ul id="nav-content">
<li class="project-category">
<h2 class="project-title">C projects</h2>
<ul class="project-list">
<li class="project">
<a href="#">Sokoban</a>
</li>
<li class="project">
<a href="#">Crypto</a>
</li>
</ul>
</li>
<li class="project-category">
<h2 class="project-title">Java projects</h2>
<ul class="project-list">
<li class="project">
<a href="#">Sokoban</a>
</li>
<li class="project">
<a href="#">Crypto</a>
</li>
</ul>
</li>
</ul>
</nav>
<header>
<input type="button" value="Slt bro" id="nav-btn">
<h1 id="main-title">Introduction</h1>
</header>
<main>
<section>
<article class="self-presentation" id="robeing">
<img class="self-presentation-img" src="willow2.png">
<p class="self-presentation-content">Mit dem antizyklischen Kapitalpolster sollen die Kapitalanforderungen für den Bankensektor das globale Finanzumfeld berücksichtigen, in dem die Banken häufig Bewertungen der vertraglichen Laufzeiteninkongruenz durchführen. Auf die Behandlung von Minderheitsbeteiligungen und die regulatorischen Anpassungen bei der Berechnung des harten Kernkapitals in voller Höhe abgezogen werden. Banken, die die auf internationaler Ebene gleiche Rahmenbedingungen fördern und dazu beitragen werden.</p>
</article>
<article class="self-presentation" id="mahteou">
<p class="self-presentation-content">Mit dem antizyklischen Kapitalpolster sollen die Kapitalanforderungen für den
Bankensektor das globale Finanzumfeld berücksichtigen, in dem die Banken häufig Bewertungen der vertraglichen
Laufzeiteninkongruenz durchführen. Auf die Behandlung von Minderheitsbeteiligungen und die regulatorischen
Anpassungen bei der Berechnung des harten Kernkapitals in voller Höhe abgezogen werden. Banken, die die auf
internationaler Ebene gleiche Rahmenbedingungen fördern und dazu beitragen werden.</p>
<img class="self-presentation-img" src="./willow.png">
</article>
</section>
<input type="button" id="project-btn" value="Slt bro 2">
</main>
<!-- <script src="scripts/index.js"></script> -->
</body>
</html>
\ No newline at end of file
/* Root */
root {
--vh: calc(100vh - 1px);
--vw: calc(100vw - 1px);
--global-color: #fff;
}
/* ------------------------------------------- */
* {
font-family: 'Anek Latin', sans-serif;
}
/* Global default */
html, body {
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
background-color: #1E1E1E;
color: #fff;
}
a {
color: #fff;
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
margin: 0;
padding: 0;
}
p {
letter-spacing: 1px;
line-height: 20px;
transition: .3s ease-in-out;
}
p:hover{
text-shadow: white 1px 1px;
}
/* ------------------------------------------- */
nav {
transform: translate(-1000%);
position: fixed;
height: 100%;
width: 20%;
background: red;
}
nav.activated {
transform: translate(0);
}
#nav-title {
text-align: center;
font-size: 250%;
padding: 10px;
}
#nav-content {
margin-top: 10%;
}
.project-title {
font-size: 200%;
padding: 10px;
padding-bottom: 6px;
}
.project-list {
width: 90%;
padding: 5%;
display: flex;
flex-direction: column;
}
.project {
padding: 3px;
}
header {
width: 100%;
height: 20%;
display: grid;
grid-template-columns: 20% 60% 20%;
grid-template-rows: auto;
grid-template-areas:
"nav-btn title .";
}
#main-title {
color: #818181;
font-size: 400%;
text-align: center;
grid-area: title;
margin: auto;
}
#nav-btn {
grid-area: nav-btn;
width: 50%;
height: 30px;
border-radius: 24px;
margin: auto;
}
main {
width: 100%;
height: 80%;
display: grid;
grid-template-columns: 20% 60% 20%;
}
section {
width: 100%;
height: 100%;
grid-row: 1;
grid-column: 2;
display: flex;
flex-direction: column;
justify-content: center;
}
/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
.self-presentation {
padding: 3%;
display: flex;
flex-direction: row;
}
.self-presentation-content {
width: 80%;
padding: 10px;
text-align: justify;
margin: auto;
}
.self-presentation-img {
height: 200px;
margin: auto;
}
#mahteou p {
direction: rtl;
}
#project-btn {
width: 300px;
height: 80px;
font-size: 150%;
border: none;
border-bottom: solid #E9C46A 5px;
border-right: solid #E9C46A 5px;
border-top-left-radius: 10px;
background: rgba(233, 196, 106, 0.05);
margin: auto;
color: #F5EBE0;
grid-row: 1;
grid-column: 3;
rotate: -90deg;
transition: .4s ease-in-out;
}
#project-btn:hover {
box-shadow: 0px 0px 15px 5px #E9C46A;
}
/* ------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
nav ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
a {
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
/* change colours to suit your needs */
ins {
background-color: #ff9;
color: #000;
text-decoration: none;
}
/* change colours to suit your needs */
mark {
background-color: #ff9;
color: #000;
font-style: italic;
font-weight: bold;
}
del {
text-decoration: line-through;
}
abbr[title],
dfn[title] {
border-bottom: 1px dotted;
cursor: help;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #cccccc;
margin: 1em 0;
padding: 0;
}
input,
select {
vertical-align: middle;
}
\ No newline at end of file
Web-Client/Projet/willow.png

6.49 KiB

Web-Client/Projet/willow2.png

1.71 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment