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
|
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #232323;
color: #fff;
font-family: 'IBM Plex sans', sans-serif;
font-size: 16px;
line-height: 1.5;
}
header {
padding: 1rem;
display: flex;
align-items: center;
background-color: rgb(10,10,10);
}
input{
padding: 0.5rem;
border-radius: 20px;
border: 3px solid rgb(53, 107, 62, 0);
outline-style: none;
background-color: rgb(18, 18, 18);
color: rgb(185, 185, 185);
font-size: 1rem;
margin: 0.5rem;
text-align: center;
}
input:focus-visible{
border: 3px solid rgb(53, 107, 62);
}
header .header-logo{
width: 4rem;
margin-right: 1rem;
}
header .header-title{
font-weight: 200;
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 20px;
/* Vertical align in page */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
/* Center in page */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.serial-input{
margin-bottom: 3rem;
}
.serial-input p{
color: rgb(185, 185, 185);
}
.serial-input p {
margin-bottom: 1rem;
}
.file-upload {
width: 100%;
}
.file-upload .file-input-title {
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(18, 18, 18);
height: 3rem;
width: 100%;
}
.file-upload .file-input {
display: none;
}
.file-upload .file-upload-title{
margin-bottom: 1rem;
}
.file-upload .file-input-label {
display: flex;
border-radius: 1rem;
align-items: center;
justify-content: center;
background-color: rgb(63, 13, 242);
height: 3rem;
width: 100%;
}
.file-upload .file-input-label:hover{
background-color: rgb(98, 13, 255);
cursor: pointer;
}
.file-upload .file-input-label .fa-cloud-arrow-up{
margin-right: 0.5rem;
}
|