-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles-series.css
123 lines (104 loc) · 2.13 KB
/
styles-series.css
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* Réinitialisation des styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Styles de base */
body {
font-family: Arial, sans-serif;
background-color: #000000;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Styles de la barre de navigation */
nav {
background-color: #000000;
color: #fff;
padding: 10px 0;
}
nav .logo {
display: flex;
align-items: center;
margin-left: 20px;
}
nav .logo img {
width: 40px;
margin-right: 10px;
}
nav .logo h1 {
color: #fff;
font-size: 24px;
}
nav .nav-links {
display: flex;
justify-content: flex-end;
margin-right: 20px;
}
nav .nav-links li {
list-style: none;
margin-left: 20px;
}
nav .nav-links li a {
color: #fff;
text-decoration: none;
font-size: 18px;
}
nav .nav-links li a:hover {
color: #e50914;
}
/* Styles pour les emplacements des series */
.series {
margin-top: 40px;
}
.titre {
font-size: 28px;
margin-bottom: 20px;
color: #fff;
text-align: center;
background-color: #e50914;
height: 35px;
width: 250px;
position: relative;
left: 800px;
}
.serie-row {
display: flex;
flex-wrap: wrap;
justify-content: center; /* Centre horizontalement les cartes de series */
margin-bottom: 20px;
}
.serie-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 6px 10px #e50914;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 300px;
width: 200px;
margin: 0 10px 20px; /* Ajuste l'espace entre les cartes */
}
.serie-card img {
width: 100%;
height: 200px; /* Ajuste la hauteur de l'image */
object-fit: cover; /* Empêche les images de se déformer */
border-radius: 10px 10px 0 0;
}
.serie-card .movie-details {
text-align: center;
padding: 10px;
}
.serie-card h2 {
font-size: 18px;
margin-top: 0;
margin-bottom: 5px;
}
.serie-card p {
font-size: 14px;
color: #666;
margin-bottom: 10px;
}