-
-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
nft.css
95 lines (84 loc) · 1.73 KB
/
nft.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
.kg-nft-card,
.kg-nft-card * {
box-sizing: border-box;
}
.kg-nft-card {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.kg-nft-card a.kg-nft-card-container {
position: static;
display: flex;
flex: auto;
flex-direction: column;
text-decoration: none;
font-family: -apple-system, BlinkMacSystemFont,
'avenir next', avenir,
'helvetica neue', helvetica,
ubuntu,
roboto, noto,
'segoe ui', arial,
sans-serif;
font-size: 14px;
font-weight: 400;
box-shadow: 0 2px 6px -2px rgb(0 0 0 / 10%), 0 0 1px rgb(0 0 0 / 40%);
width: 100%;
max-width: 512px;
color: #222;
background: #fff;
border-radius: 5px;
transition: none;
}
.kg-nft-card * {
position: static;
}
.kg-nft-metadata {
padding: 20px;
width: 100%;
}
.kg-nft-image {
border-radius: 5px 5px 0 0;
width: 100%;
}
.kg-nft-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
}
.kg-nft-header h4.kg-nft-title {
font-family: inherit;
font-size: 19px;
font-weight: 700;
line-height: 1.3em;
min-width: unset;
max-width: unset;
margin: 0;
color: #222;
}
.kg-nft-opensea-logo {
margin-top: 2px;
width: 100px;
object-fit: scale-down;
}
.kg-nft-creator {
font-family: inherit;
line-height: 1.4em;
margin: 4px 0 0;
color: #ababab;
}
.kg-nft-creator span {
font-weight: 500;
color: #222;
}
.kg-nft-card p.kg-nft-description {
font-family: inherit;
font-size: 14px;
line-height: 1.4em;
margin: 20px 0 0;
color: #222;
}