You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
2.1 KiB
158 lines
2.1 KiB
canvas {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
top: 78px;
|
|
}
|
|
|
|
body,
|
|
html,
|
|
article,
|
|
section {
|
|
font-family: 'Courier New', monospace;
|
|
color: #00ff00;
|
|
}
|
|
|
|
|
|
.navbar {
|
|
background-color: #0000009a;
|
|
padding: 15px 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 3;
|
|
height: 40px;
|
|
}
|
|
|
|
|
|
|
|
|
|
.liens-nav {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 20px;
|
|
padding: 60px;
|
|
position: relative;
|
|
}
|
|
|
|
.liens-nav a {
|
|
color: #00ff00;
|
|
text-decoration: none;
|
|
font-size: 1em;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.liens-nav a:hover {
|
|
color: #3b9836;
|
|
}
|
|
|
|
.navbar .liens-nav .active {
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
position: absolute;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
padding: 10px 0px;
|
|
background-color: #000000d3;
|
|
;
|
|
z-index: 5;
|
|
}
|
|
|
|
.hidden a {
|
|
cursor: pointer;
|
|
padding: 10px 0px;
|
|
|
|
}
|
|
|
|
.survol:hover .hidden {
|
|
display: flex;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
aside a:hover {
|
|
color: #3b9836;
|
|
}
|
|
|
|
|
|
.pres {
|
|
display: flex;
|
|
padding: 10px;
|
|
}
|
|
|
|
|
|
h2 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
form {
|
|
max-width: 600px;
|
|
margin: auto;
|
|
padding: 20px;
|
|
background-color: #010101ae;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
width: 95%;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border: 2px solid #35a015;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
margin-right: 10px;
|
|
background-color: #16a927;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #056017;
|
|
}
|
|
|
|
footer {
|
|
background-color: #0000009a;
|
|
padding: 15px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 3;
|
|
height: 10px;
|
|
} |