-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (104 loc) · 2.06 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (104 loc) · 2.06 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
*{
margin: 0%;
padding: 0%;
}
#heading,#desc,.details,.created{
padding-top: 15px;
}
body{
background-color:hsl(217, 54%, 11%);
}
.flex{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.card{
background-color: hsl(216, 50%, 16%);
width: 250px;
height: 440px;
padding: 15px;
border-radius: 5%;
}
.container{
position: relative;
}
.Equilibrium-img{
height: 250px;
width: 250px;
border-radius: 5%;
position: relative;
}
.view-icon{
position: absolute;
left: 0%;
top: 0%;
height: 250px;
width: 250px;
border-radius: 5%;
background-color: hsla(178, 100%, 50%, 0.50);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
}
p{
font-family: 'Outfit', sans-serif;
}
#heading{
color: hsl(0, 0%, 100%);
font-weight: 600;
font-size: 18px;
}
#desc{
font-weight: 400;
font-size: 14px;
color: hsl(215, 51%, 70%);
}
.details{
display: flex;
font-size: 14px;
align-items: center;
height:22px;
justify-content: space-between;
font-weight: 600;
padding-bottom: 15px ;
}
.price,.days,.created{
display: flex;
align-items: center;
gap: 7px;
}
.eth-price{
color: hsl(178, 100%, 50%);
}
hr{
background-color: hsl(215, 32%, 27%);
border: 1px solid hsl(215, 32%, 27%);
}
.creator-img{
height: 25px;
width: 25px;
border: 1.5px solid hsl(0, 0%, 100%);
border-radius: 90%;
margin-right: 6px;
}
.eth-days,.creation{
color:hsl(215, 51%, 70%);
font-size: 14px;
font-weight: 300;
}
.creator-name{
color:hsl(0, 0%, 100%);
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
.creator-name:hover,#heading:hover{
color: hsl(178, 100%, 50%);
cursor: pointer;
}
.view-icon:hover{
opacity: 1;
cursor: pointer;
}