-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
127 lines (111 loc) · 2.14 KB
/
Copy pathindex.css
File metadata and controls
127 lines (111 loc) · 2.14 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
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
124
125
126
127
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
html,
body {
height: 100%;
background-color: hsl(217, 54%, 11%);
font-family: 'Outfit', sans-serif;
}
.container{
background-color: hsl(216, 50%, 16%);
position:relative;
top: 50%;
transform: translate(0,-50%);
width: 320px;
padding: 20px;
margin: 0 auto;
border-radius: 10px;
}
.containerMainPic{
display: grid;
background-color:hsl(178, 100%, 50%) ;
border-radius: 10px;
}
.img1{
grid-column: 1;
grid-row: 1;
width: 100%;
border-radius: 10px;
z-index: 0;
opacity: 1;
}
.oeil{
grid-column: 1;
grid-row: 1;
border-radius: 10px;
margin: auto auto auto auto;
}
.img1:hover ~ .oeil {
z-index: 10;
}
.img1:hover {
opacity: 0.5;
cursor: pointer;
}
.title{
color: hsl(0, 0%, 100%);
font-weight: 600 ;
margin: 20px 0;
font-size: 21px
}
.title:hover{
color: hsl(178, 100%, 50%);
cursor: pointer;
}
.descriptionText{
font-size: 18px;
color: hsl(215, 51%, 70%);
font-weight: 300;
margin: 20px 0;
}
.infos{
color: white;
display: flex;
justify-content: space-between;
margin: 20px 0;
}
.infosdays{
display: flex;
}
.eth{
color:hsl(178, 100%, 50%) ;
align-self: center;
margin-right: 5px;
}
.price{
color: hsl(178, 100%, 50%);
display: flex;
}
.material-symbols-outlined{
color: hsl(215, 51%, 70%);
font-size: 15px;
align-self: center;
margin-right: 5px;
}
.infosdays{
color: hsl(215, 51%, 70%);
}
hr{
height: 0px;
border-color: hsl(215, 32%, 27%);
margin-bottom: 15px;
}
.profil{
height: 30px;
display: flex;
font-weight: 300 ;
}
.img2{
border-radius: 50%;
height: 100%;
border: 1px solid white;
}
.profiltext{
align-self: center;
color: hsl(215, 51%, 70%);
margin-left: 15px;
}
.name{color: white;}
.name:hover{
color:hsl(178, 100%, 50%) ;
cursor: pointer;
}