mirror of
https://github.com/appen-isen/site-interpromo-2023.git
synced 2026-03-18 21:50:39 +01:00
Merge pull request #2 from appen-isen/Achille
WIP sur la création du menu HTML de base
This commit is contained in:
40
DOC.md
Normal file
40
DOC.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# SITE-INTERPROMO-2023 (& above) Documentation
|
||||
|
||||
## Table of Contents
|
||||
- Introduction
|
||||
- Frontend (client interface)
|
||||
- Features
|
||||
- Graphic specifications
|
||||
- Backend
|
||||
- Generalities
|
||||
- API Endpoints
|
||||
- Error Handling
|
||||
- Testing
|
||||
- Credits
|
||||
|
||||
## Introduction
|
||||
Welcome to the documentation of our magnificent, totally-not-rushed, superfunctional website !
|
||||
This website is <TODO>
|
||||
|
||||
## Frontend
|
||||
### Features
|
||||
|
||||
|
||||
### Graphic specifications
|
||||
|
||||
|
||||
## Backend
|
||||
### Generalities
|
||||
|
||||
|
||||
### API Endpoints
|
||||
|
||||
|
||||
### Error Handling
|
||||
|
||||
|
||||
### Testing
|
||||
|
||||
|
||||
|
||||
## Credits
|
||||
75
Front/MainCSS.css
Normal file
75
Front/MainCSS.css
Normal file
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
This CSS contains settings shared beetween all pages (notably the header's).
|
||||
*/
|
||||
|
||||
html {
|
||||
height:100%;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #ff1f1f;
|
||||
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
display:flex;
|
||||
|
||||
|
||||
/* nav */
|
||||
order: 2;
|
||||
overflow:inherit;
|
||||
|
||||
background-color: #212529;
|
||||
align-self:center;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
/* inherited from navbar */
|
||||
padding: 0px 0px 0px 0px;
|
||||
margin: 0px;
|
||||
/*text-align: center;*/
|
||||
/* display:inline-block; */
|
||||
/*vertical-align:top;*/
|
||||
}
|
||||
|
||||
header nobr {
|
||||
color: white;
|
||||
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
|
||||
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
align-self:center;
|
||||
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
height: 24px;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 4px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
header nobr a, header nobr div button {
|
||||
padding: 20px 20px 20px 20px;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
|
||||
text-decoration: none;
|
||||
line-height: 0px;
|
||||
padding: 5px 12px;
|
||||
}
|
||||
|
||||
header nobr a:hover {
|
||||
background-color: #4e5256;
|
||||
}
|
||||
|
||||
|
||||
|
||||
body {
|
||||
background-color: #101214;
|
||||
height:100%;
|
||||
position: relative;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
@@ -1,13 +1,24 @@
|
||||
<!doctype html>
|
||||
<html lang="fr">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Interpromo 2023</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
||||
<title> Accueil </title>
|
||||
<link href="Accueil.css" rel="stylesheet">
|
||||
<link href="MainCSS.css" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"rel="stylesheet">
|
||||
<link rel = "icon" href ="Doc images/pagelogo.png"type = "image/x-icon">
|
||||
</head>
|
||||
<header>
|
||||
<!-- Website's logo -->
|
||||
<img src="https://avatars.githubusercontent.com/u/114828919?s=200&v=4" alt="Interpromos Logo" id="header-img" width="25px"height="25px">
|
||||
<!-- Name of the Website -->
|
||||
<nobr>Interpromos 2023</nobr>
|
||||
<!-- Links to the different pages -->
|
||||
<nobr><a href="Matchs.html"><span class="material-icons">receipt_long</span> Matches</a></nobr>
|
||||
<nobr><a href="Teams.html"><span class="material-icons">groups</span> Équipes</a></nobr>
|
||||
<nobr><a href="Sports.html"><span class="material-icons">sports_handball</span> Sports</a></nobr>
|
||||
<nobr><a href="Referee.html"><span class="material-icons">front_hand</span> Arbitres</a></nobr>
|
||||
</header>
|
||||
<body>
|
||||
<h1>Coucou</h1>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user