-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
83 lines (73 loc) · 1.48 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
@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;
scrollbar-width: none;
}
#text {
font-size: large;
color: #fafffd;
}
.prototype {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100vw;
margin: 30px 0;
}
.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,
::file-selector-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;
}