Base (no test)

This commit is contained in:
2024-09-27 17:36:51 +02:00
commit 939b9d7179
3 changed files with 67 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.idea
.vscode

27
index.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Modelec Asset Live</title>
<link rel="stylesheet" href="style.css">
<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=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="topBar">
<img src="logo.gif" alt="logo" id="logo">
</div>
<div id="void"></div>
<div id="bottom">
<p id="site" class="bottom-text">https://modelec.club</p>
<p id="insta" class="bottom-text">https://instagram.com/modelec_isen</p>
<p id="github" class="bottom-text">https://github.com/modelec</p>
<p id="mail" class="bottom-text">contact@modelec.club</p>
<p id="nos-partenaires" class="bottom-text">Nos partenaires:</p>
<p id="bde" class="bottom-text">Odyssey BDE</p>
<p id="isen" class="bottom-text">ISEN Nantes</p>
<p id="mercurycloud" class="bottom-text">MercuryCloud</p>
</div>
</body>
</html>

38
style.css Normal file
View File

@@ -0,0 +1,38 @@
/*
body{
background-color: rgba(255, 255, 255, 0);
margin: 0;
font-family: 'Roboto', sans-serif;
}
*/
body {
background-color: #00ff1a;
margin: 0;
font-family: 'Roboto', sans-serif;
}
#topBar {
width: 100%;
height: 72px;
background-color: rgba(255, 89, 90, 0.5);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#void {
height: 936px;
}
#bottom {
bottom: 0;
width: 100%;
height: 72px;
background-color: rgba(255, 255, 255, 0.5);
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-wrap: nowrap;
gap: 5em;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}