-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnft.css
More file actions
66 lines (55 loc) · 1.2 KB
/
nft.css
File metadata and controls
66 lines (55 loc) · 1.2 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
* {
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
margin: 0;
padding: 0;
}
body {
margin: 2rem;
color: var(--clr-gray);
}
.wrapper-flex {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.container {
overflow: hidden;
box-shadow: 0px 2px 8px 0px var(--clr-gray-light);
background-color: lightcyan;
text-align: left;
border-radius: 1rem;
position: relative;
width: 280px;
margin-bottom: 1rem;
margin-left: 1rem;
border: 1px solid #bacdd8;
padding: 8px;
}
.name {
font-size: 1.5rem;
color: #000;
margin-top: 5vh;
}
.description {
margin: 1rem 2rem;
font-size: 0.9rem;
}
.list {
color: #000;
margin-top: 3vh;
}
.btn {
border: none;
padding: 12px 24px;
border-radius: 15px;
font-weight: 600;
color: #e1e4e7;
background: linear-gradient(120deg, #1c99fe 20.69%, #031a58 50.19%,#ec188d 79.69%);
display: flex;
margin: 0 auto;
cursor: pointer;
text-transform: uppercase;
transition: all .4s ease-in-out;
margin-top: 5vh;
}