-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (148 loc) · 3.73 KB
/
index.html
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NFT CARD</title>
</head>
<style>
@import url(https://fonts.google.com/specimen/Outfit);
body{
background-color: hsl(217, 54%, 11%);
padding: 0;
margin: 0;
color: white;
word-wrap: break-word;
word-break: break-all;
box-sizing: border-box;
font-size: 18px;
}
.conatiner{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
section{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
background-color: hsl(216, 50%, 16%);
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
padding: 20px;
border-radius: 10px;
}
.image{
width: 300px
}
img{
width: 100%;
border-radius: 10px;
}
/* eth side */
.eth-cont{
display: flex;
justify-content: space-between;
width: 100%;
height: 50px;
}
.main1{
height: 100%;
width: fit-content;
display: flex;
justify-content: center;
}
.main2{
width: 50%;
display: flex;
justify-content: center;
flex-flow: row;
height: 100%;
}
.eth{
width: 10%;
}
.eth img{
width: 100%;
}
.main1 span p{
display: inline;
margin-left: 5px;
font-size:medium;
color: hsl(178, 100%, 50%);
}
.clock img{
width: 100%;
}
.clock{
width: 12%;
}
.main2 span p{
display: inline;
margin-left: 5px;
font-size: medium;
color: hsl(215, 51%, 70%);
}
.avatar{
width: 30px;
padding-left: 10px;
padding-right: 5px;
}
.avatar-cont{
display: flex;
align-items: center;
}
.avatar img{
border: 1px solid white;
margin-top: 5px;
border-radius: 50%;
}
.avatar-cont p{
color: hsl(215, 51%, 70%);
}
</style>
<body>
<div class="conatiner">
<section>
<div class="image">
<img src="./img/image-equilibrium.jpg" alt="eth image">
</div>
<div>
<h1>Equillibrium #3429</h1>
<p style="color:hsl(215, 51%, 70%) ;">Our Equillibrium collection promotes <br> balance and calm.</p>
</div>
<div class="eth-cont">
<div class="main1">
<div class="eth">
<img src="./img/icon-ethereum.svg" alt="">
</div>
<span>
<p>
#0.0041ETH
</p>
</span>
</div>
<div class="main2">
<div class="clock">
<img src="./img/icon-clock.svg" alt="">
</div>
<span>
<p>3 days left</p>
</span>
</div>
</div>
<div>
<div style="border:1px solid hsl(215, 51%, 70%); background-color: hsl(215, 51%, 70%); opacity: 0.2;"></div>
</div>
<div class="avatar-cont">
<div class="avatar">
<img src="./img/image-avatar.png" alt="">
</div>
<p>creation of <pre> jules Wyvern</pre> </p>
</div>
</section>
</div>
</body>
</html>