forked from metaplex-foundation/js-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
82 lines (70 loc) · 1.13 KB
/
App.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
.App {
text-align: center;
display: flex;
width: 100vw;
height: 100vh;
}
.container {
margin: auto;
width: 100%;
max-width: 500px;
padding: 2rem;
}
.title {
text-align: left;
font-size: 12px;
font-weight: 500;
color: #0f172a;
}
.nftForm {
display: flex;
}
.nftForm input {
flex: 1;
padding: 1rem;
margin: 0;
margin-right: -1.5px;
border: 1.5px solid #0f172a;
}
.nftForm input:hover {
border-color: #4f46e5;
z-index: 1;
}
.nftForm input:focus {
outline: none;
border-color: #4f46e5;
z-index: 1;
}
.nftForm button {
background: white;
padding: 1rem;
margin: 0;
border: 1.5px solid #0f172a;
color: #0f172a;
font-weight: bold;
cursor: pointer;
}
.nftForm button:hover {
border-color: #4f46e5;
color: #4f46e5;
}
.nftPreview {
margin-top: 4rem;
display: flex;
flex-direction: column;
align-items: center;
}
.nftPreview h1 {
font-size: 20px;
font-weight: 500;
color: #0f172a;
border: 1.5px solid #0f172a;
background-color: white;
padding: 0.5rem 1rem;
position: relative;
margin-bottom: -22px;
transform: rotate(-5deg);
}
.nftPreview img {
max-width: 100%;
}