-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (58 loc) · 1.33 KB
/
styles.css
File metadata and controls
66 lines (58 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* ========== Base Styles ========== */
body {
font-family: "Arial", sans-serif;
background-color: #f9f9fc;
color: #333;
margin: 0;
padding: 0;
}
/*
h2 {
text-align: center;
font-weight: 600;
color: #333;
margin-top: 20px;
}
*/
/* ========== Hero Section ========== */
.hero {
text-align: center;
padding: 30px;
background: linear-gradient(to right, #6a11cb, #2575fc);
color: white; color: white;
font-size: 1.5rem;
font-weight: bold;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
margin-bottom: 30px;
}
.hero h1 {
margin: 0;
font-size: 2rem;
font-weight: 600;
}
/* ========== Navbar ========== */
.navbar {
margin-bottom: 0; /* Supprime l'espace entre la navbar et la hero */
}
.navbar .nav-link:hover {
background-color: rgba(255, 255, 255, 0.2); /* Effet survol subtil */
transition: background-color 0.3s ease; /* Animation fluide */
}
#myNavbar {
background-color: #000 !important; /* Fond noir personnalisé */
color: #fff; /* Texte blanc pour un contraste élevé */
}
/* ========== Container ========== */
.container {
margin-top: 15px;
}
/* ========== Footer ========== */
footer {
margin-top: 40px;
text-align: center;
padding: 10px 0;
border-top: 1px solid #dedede;
background-color: #f8f9fa; /* Légère couleur de fond */
color: #555; /* Texte plus doux */
font-size: 14px;
}