index
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
body {
|
||||
margin: 0;
|
||||
background-color: #ffffff;
|
||||
color: #333;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.main-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background-color: #ffffff;
|
||||
border-bottom: 4px solid #f57c00;
|
||||
padding: 20px 40px;
|
||||
}
|
||||
|
||||
.logo-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.logo-section .baseline {
|
||||
font-family: 'Cormorant Garamond', serif;
|
||||
font-size: 1.1em;
|
||||
font-style: italic;
|
||||
color: #f57c00;
|
||||
}
|
||||
|
||||
.nav-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.btn-connexion {
|
||||
background-color: #f57c00;
|
||||
color: #fff;
|
||||
padding: 12px 25px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
border-radius: 5px;
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
.btn-connexion:hover {
|
||||
background-color: #e65100;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
text-align: center;
|
||||
padding: 100px 20px;
|
||||
}
|
||||
|
||||
.main-content h2 {
|
||||
font-size: 2.5em;
|
||||
color: #f57c00;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.main-content p {
|
||||
font-size: 1.2em;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.main-footer {
|
||||
background-color: #f57c00;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 20px 10px;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
Reference in New Issue
Block a user