-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (112 loc) · 2.22 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk&display=swap');
body,
html {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #0e1012;
text-align: center;
font-family: 'Hanken Grotesk', sans-serif;
}
.prototype {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100vw;
margin-bottom: 30px;
}
.prototype label {
font-size: 1.25rem;
color: #818CF8;
font-weight: 400;
position: relative;
top: 0.5rem;
margin: 0 0 0 7px;
padding: 0 3px;
background: #0e1012;
width: fit-content;
white-space: nowrap;
text-overflow: ellipsis;
}
.prototype input {
color: #fafffd;
padding: 11px 10px;
font-size: 1.5rem;
width: 400px;
max-width: 80vw;
border: 2px #19213A solid;
border-radius: 5px;
background: #0e1012;
}
.prototype input[type="file"],
.prototype input::placeholder {
color: #93999e;
}
.prototype input[type="file"].uploaded {
color: #fafffd;
}
.prototype input:focus {
outline: solid 2px #818CF8;
}
::-webkit-file-upload-button {
padding: 6px 12px;
gap: 8px;
height: 50px;
width: max-content;
border: none;
background: #4168de33;
border-radius: 10px;
cursor: pointer;
justify-content: center;
margin: 0 auto;
color: #818CF8;
margin-right: 4px;
}
.button {
display: flex;
align-items: center;
font-weight: inherit;
padding: 12px 24px;
gap: 8px;
height: 70px;
width: max-content;
white-space: nowrap;
text-overflow: ellipsis;
border: none;
background: #4168de33;
border-radius: 10px;
cursor: pointer;
justify-content: center;
margin: 0 auto;
}
.button:focus {
outline: solid 2px #818CF8;
}
.btnlabel {
margin-left: 10px;
line-height: 20px;
font-size: 1.5rem;
color: #818CF8;
font-family: sans-serif;
letter-spacing: 1px;
}
.button:hover {
background: #4168de33;
}
.button:hover svg {
animation: spin 2s linear infinite;
}
.downloading {
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}