mirror of
https://github.com/modelec/assets-live.git
synced 2026-01-18 16:27:30 +01:00
Base (no test)
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
.idea
|
||||
.vscode
|
||||
27
index.html
Normal file
27
index.html
Normal 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
38
style.css
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user