-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
100 lines (100 loc) · 2.12 KB
/
styles.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
96
97
98
99
100
#img-div {
position: absolute;
display: block;
top: 35%;
left: 10%;
text-align: center;
}
#img-canvas {
width: 100px;
height: 100px;
display: block;
margin: auto;
}
#img-text {
display: block;
width: fit-content;
font-size: 20px;
}
#nft-input {
display: flex;
justify-content: center;
align-items: center;
position: relative;
height: 49px;
left: 0;
right: 0;
text-align: center;
font-family: "Arial";
font-size: 32px;
font-weight: bold;
text-align: center;
margin: 0px 0 0px 0;
}
#nft_url {
display: block;
z-index: 1;
color: #3d3d3d;
font-family: Calibri;
font-size: 16px;
font-weight: bold;
background-image: url(./image-icon.svg);
background-repeat: no-repeat;
background-position: 7px;
background-color: #ffffff;
border-radius: 6px;
outline: solid 2.25px #222222;
border: none;
width: 30%;
height: 49px;
padding: 0 15px 0 37px;
margin: 0 10px 0 10px;
transition: outline-width .1s ease-in-out, transform .1s ease-in-out;
}
#nft_url:hover, #nft_url:focus {
outline: solid #222222;
outline-width: 3.5px;
transform: scale(1.01);
}
#input-button{
z-index: 1;
display: inline;
cursor: pointer;
font-family: Arial, Helvetica, sans-serif;
background-color: #ffffff;
padding: 0px 30px 0px 30px;
height: 49px;
width: 101.5px;
outline: solid 2.25px #222222;
border: none;
border-radius: 5px;
transition: outline-width .1s ease-in-out, transform .1s ease-in-out;
}
#input-button:hover {
outline-width: 3.5px;
transform: scale(1.03);
}
#newgame-div{
display: block;
}
#newgame-but {
display: block;
margin: auto;
z-index: 1;
cursor: pointer;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 17px;
background-color: #1b1b1b;
color: white;
padding: 0px 30px 0px 30px;
height: 49px;
width: 150px;
border: none;
border-radius: 5px;
transition: all .2s ease-in-out;
}
#newgame-but:hover {
background-color: #292929;
transform: scale(1.05);
}