-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (85 loc) · 1.46 KB
/
style.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
body {
background-color: black;
height: 100vh;
width: 100vw;
overflow-x: hidden;
overflow-y: hidden;
}
header {
height: 44px;
color: palevioletred;
font-size: 30px;
border-bottom: 1px solid #ededed;
text-align: center;
}
.details {
border-radius: 10px;
margin: 0 5%;
height: 70%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.details > div {
width: 70%;
display: flex;
flex-direction: column;
align-items: center;
}
.details > div > p {
color: white;
font-size: 28px;
font-family: "Striper", sans-serif;
color: rgb(166, 219, 21);
}
.details > div > input {
background-color: transparent;
text-align: center;
width: 80%;
border: 1px solid #ededed;
height: 36px;
color: palevioletred;
}
.mint {
display: flex;
justify-content: center;
align-items: center;
margin-top: 5%;
}
.mint_btn {
background-color: transparent;
border: 1px solid #ededed;
width: 40vw;
height: 60px;
color: palevioletred;
font-size: 28px;
}
.mint_btn:hover {
background-color: palevioletred;
color: #ededed;
cursor: pointer;
}
@media (min-width: 769px) {
header {
height: 64px;
font-size: 36px;
display: flex;
justify-content: center;
align-items: center;
}
.details {
height: 50%;
flex-direction: row;
}
.details > div > p {
font-size: 36px;
}
.details > div > input {
width: 80%;
height: 60px;
}
.mint_btn {
width: 10vw;
}
}