-
Notifications
You must be signed in to change notification settings - Fork 1
/
AffichageRDV.css
101 lines (80 loc) · 1.5 KB
/
AffichageRDV.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
body{
background-color: var(--fond1);
}
#cardRDV {
width: 700px;
height: 250px;
background-color: #fff;
background: linear-gradient(#f8f8f8, #fff);
box-shadow: 0 8px 16px -8px rgba(0,0,0,0.4);
border-radius: 6px;
overflow: hidden;
/* position: relative; */
margin: 50px;
border-radius: 10px;
display: flex;
flex-direction: row;
}
.detailsRDV
{
width:100%;
height:100%;
transition: width 0.4s;
background: linear-gradient(#013d42, #266b6b);
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.detailsProfil
{
width:30%;
height:100%;
transition: width 0.4s;
background: linear-gradient(#013d42, #266b6b);
display: flex;
flex-direction: column;
justify-content: center;
border:10px #f8f8f8 ;
}
.textDetails
{
display: flex;
flex-direction: row;
justify-content: space-between;
margin-left: 15px;
margin-right: 15px;
}
.titreD
{
color: white;
font-weight: bold;
}
.descriptionD
{
color: white;
}
.annuler
{
width:0%;
height:100%;
transition: width 0.4s;
background: linear-gradient(rgb(75, 3, 3), red);
}
.annuler:hover
{
background: linear-gradient(rgb(127, 5, 5), rgb(102, 61, 61));
}
#cardRDV:hover .detailsRDV {
width:80%;
}
#cardRDV:hover .annuler {
width:20%;
}
.photoProfil{
border-radius: 5px;
max-width: 80%;
max-height: 70%;
margin : auto;
margin-top: 5%;
overflow: hidden;
}