-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 988 Bytes
/
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
body {
font-family: "Roboto", sans-serif;
background-color: #cd1628;
color: white;
text-align: center;
}
h1 {
text-align: center;
}
#jsonFile {
padding: 7px 30px;
}
input[type="file"]::file-selector-button {
font-weight: 800;
font-family: "Roboto", sans-serif;
border-radius: 4px;
padding: 10 2px;
height: 40px;
cursor: pointer;
background-color: white;
border: 1px solid rgba(0, 0, 0);
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
border-radius: 10px;
margin-right: 16px;
transition: background-color 200ms;
}
input[type="file"]::file-selector-button:hover {
background-color: #cd1628;
color: white;
}
input[type="file"]::file-selector-button:active {
background-color: #e25b68;
}
.btn {
display: flex;
justify-content: center;
}
#uploadButton {
margin-top: 15px;
padding: 7px 30px;
font-weight: 800;
display: flex;
border: 1px solid black;
border-radius: 10px;
}