-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
751c100
commit 9b0521d
Showing
507 changed files
with
97,058 additions
and
175 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,162 +1,144 @@ | ||
body { | ||
font-family: Arial, Helvetica, sans-serif; | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); | ||
|
||
body { | ||
font-family: "Roboto", sans-serif; | ||
font-weight: 700; | ||
text-align: center; | ||
color: white; | ||
background-color: #1f1f1f; | ||
} | ||
|
||
header { | ||
main, header { | ||
width: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
header * { | ||
margin: 5px; | ||
} | ||
|
||
a { | ||
color: white; | ||
|
||
font-weight: 700; | ||
} | ||
|
||
h1, img { | ||
margin: 0; | ||
main { | ||
margin-top: 15px; | ||
} | ||
|
||
h2 { | ||
text-align: center; | ||
/* Header */ | ||
nav { | ||
width: 100%; | ||
background-color: #242424; | ||
box-shadow: 0px 0px 35px #000000; | ||
} | ||
|
||
#titre { | ||
color: black; | ||
font-style: italic; | ||
-webkit-text-stroke-width: 0.5px; | ||
-webkit-text-stroke-color: white; | ||
display: flex; | ||
|
||
flex-direction: row; | ||
align-items: center; | ||
} | ||
|
||
.logo-php { | ||
width: 75px; | ||
height: 50px; | ||
} | ||
|
||
main { | ||
width: 100%; | ||
form { | ||
width: 50%; | ||
|
||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.projects-list, .registered-sites { | ||
width: 95%; | ||
height: 100%; | ||
form h2 { | ||
width: 20%; | ||
|
||
margin: 25px; | ||
margin: 5px; | ||
|
||
font-size: large; | ||
|
||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
flex-direction: row; | ||
align-items: center; | ||
} | ||
|
||
.project { | ||
width: 15%; | ||
height: 20vh; | ||
|
||
min-width: 150px; | ||
min-height: 100px; | ||
|
||
margin: 25px; | ||
form input { | ||
width: 35%; | ||
|
||
background-color: #3b3b3b; | ||
margin: 0px 5px; | ||
|
||
text-align: center; | ||
padding: 10px 5px; | ||
|
||
border: solid 2px white; | ||
border-radius: 15px; | ||
border: none; | ||
border-radius: 10px; | ||
} | ||
|
||
.project div { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
form input[type=submit] { | ||
width: 15%; | ||
|
||
.project div:first-of-type { | ||
height: 70%; | ||
} | ||
min-width: 100px; | ||
|
||
.project div:last-of-type { | ||
height: 30%; | ||
padding: 10px 25px; | ||
} | ||
|
||
.button { | ||
background-color: ; | ||
/* Main */ | ||
|
||
section { | ||
margin: 15px; | ||
} | ||
|
||
hr { | ||
width: 80%; | ||
width: 70%; | ||
} | ||
|
||
.site { | ||
width: 15%; | ||
height: 13vh; | ||
|
||
min-width: 150px; | ||
min-height: 100px; | ||
|
||
.projects-list { | ||
display: flex; | ||
flex-direction: column; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
|
||
margin: 25px; | ||
max-width: 100vw; | ||
|
||
background-color: #3b3b3b; | ||
|
||
text-align: center; | ||
|
||
border: solid 2px white; | ||
border-radius: 15px; | ||
overflow: hidden; | ||
} | ||
|
||
.site h2 { | ||
margin: 20px; | ||
} | ||
.project, .site { | ||
width: 15vw; | ||
height: 15vh; | ||
|
||
.form-hr { | ||
width: 40%; | ||
} | ||
min-width: 150px; | ||
margin: 5px 15px; | ||
|
||
form { | ||
width: 100%; | ||
border-radius: 15px; | ||
|
||
box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.5); | ||
|
||
display: flex; | ||
flex-wrap: wrap; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
form input { | ||
width: 30%; | ||
height: 5vh; | ||
justify-content: center; | ||
|
||
margin: 5px 0px; | ||
background-color: #242424; | ||
} | ||
|
||
form input[type="text"] { | ||
color: white; | ||
background-color: #1f1f1f; | ||
|
||
outline : none; | ||
@media (max-width: 768px) { | ||
.container-fluid { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
border: none; | ||
border-bottom: solid white 1px; | ||
} | ||
|
||
form input[type=submit] { | ||
width: 15%; | ||
form { | ||
width: 90%; | ||
} | ||
|
||
font-size: 1em; | ||
|
||
border: none; | ||
border-radius: 5px; | ||
.project, .site { | ||
width: 45vw; | ||
} | ||
} | ||
|
||
margin: 25px 0px 10px 0px; | ||
} | ||
@media (max-width: 480px) { | ||
.project, .site { | ||
width: 90vw; | ||
height: 25vh; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
[ | ||
|
||
] | ||
[] |
Oops, something went wrong.