-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (71 loc) · 1.35 KB
/
style.css
File metadata and controls
90 lines (71 loc) · 1.35 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.around {
border: solid white 5px;
border-radius: 100%;
width: 110px;
height: 200px;
padding: 5px;
background-image: url(img/Photo.jpg);
background-size: contain;
}
.trait {
width: 60px;
height: 4px;
background-color: #0d6efd;
border-radius: 10px;
}
.banner {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
url('banner.jpg') center/cover no-repeat;
height: 80vh;
}
.card:hover {
transform: translateY(-5px);
transition: all 0.3s ease;
}
.skill h5 {
font-weight: bold;
}
.box:hover {
transform: translateY(-10px);
transition: 0.3s ease;
background-color: #212529;
}
/* Animation légère sur les cartes */
.portfolio-card {
transition: transform 0.3s ease, background-color 0.3s ease;
}
.portfolio-card:hover {
transform: translateY(-10px);
background-color: #343a40;
}
/* Ajoute ceci dans ton fichier CSS */
.carousel-item {
transition: transform 0.8s ease, opacity 0.8s ease;
}
.card {
background-color: white;
border: none;
border-radius: 1rem;
}
.card-text {
font-size: 1.1rem;
font-style: italic;
color: #555;
}
h5 {
font-weight: bold;
color: #333;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
width: 2rem;
height: 2rem;
background-size: 100% 100%;
}
footer a:hover {
text-decoration: underline;
color: #f8f9fa;
}
footer p {
margin-bottom: 0;
}