Actualiser css/style.css

This commit is contained in:
2026-07-21 16:15:09 +02:00
parent b3dc4598df
commit fb61c92f16
-27
View File
@@ -3,13 +3,11 @@
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, #e85d04 0%, #faedcd 100%);
min-height: 100vh;
}
/* Navbar */
.navbar {
display: flex;
@@ -23,30 +21,25 @@ body {
top: 0;
z-index: 1000;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: #e85d04;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
text-decoration: none;
color: #333;
font-weight: 600;
transition: color 0.3s;
}
.nav-links a:hover {
color: #e85d04;
}
/* Buttons */
.btn-primary {
background: #e85d04;
@@ -58,12 +51,10 @@ body {
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(232, 93, 4, 0.3);
}
.btn-large {
background: #fff;
color: #e85d04;
@@ -76,12 +67,10 @@ body {
margin-top: 1rem;
transition: all 0.3s;
}
.btn-large:hover {
background: #e85d04;
color: white;
}
/* Hero */
.hero {
margin-top: 70px;
@@ -95,31 +84,26 @@ body {
background-position: center;
color: white;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
}
/* Features */
.features {
padding: 5rem 5%;
background: white;
}
.features h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #e85d04;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
@@ -127,7 +111,6 @@ body {
max-width: 1200px;
margin: 0 auto;
}
.feature-card {
background: #faf3e0;
padding: 2rem;
@@ -135,16 +118,13 @@ body {
text-align: center;
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-10px);
}
.icon {
font-size: 3rem;
margin-bottom: 1rem;
}
/* Modal */
.modal {
display: none;
@@ -156,7 +136,6 @@ body {
height: 100%;
background: rgba(0,0,0,0.5);
}
.modal-content {
background: white;
margin: 5% auto;
@@ -166,7 +145,6 @@ body {
max-width: 400px;
position: relative;
}
.close {
position: absolute;
right: 1rem;
@@ -174,7 +152,6 @@ body {
font-size: 1.5rem;
cursor: pointer;
}
.auth-form input {
width: 100%;
padding: 0.8rem;
@@ -183,17 +160,14 @@ body {
border-radius: 8px;
font-family: inherit;
}
.auth-form h2 {
color: #e85d04;
margin-bottom: 1.5rem;
text-align: center;
}
.auth-form a {
color: #e85d04;
}
/* Footer */
.footer {
background: #333;
@@ -202,7 +176,6 @@ body {
padding: 2rem;
margin-top: 3rem;
}
.footer p {
margin: 0.5rem 0;
}