-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmain.css
73 lines (60 loc) · 1001 Bytes
/
main.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
body {
background-color: white;
font-family: BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
text-align: center;
overflow: hidden;
outline: none;
font-size: 16px;
-webkit-user-select: none;
}
img {
width: 100px;
height: 100px;
}
h1 {
font-size: 0.9em;
-webkit-user-select: text;
}
p {
font-size: 0.8em;
-webkit-user-select: text;
}
a {
text-decoration: none;
}
/* Buttons */
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
background: red;
cursor: inherit;
display: block;
}
.harvester-buttons button {
margin-bottom: 1.2em;
}
/* Inputs */
input[type="radio"] {
font-size: 0.8em;
}
input {
outline: none;
}
input[readonly] {
background-color: white !important;
cursor: text !important;
}
.harvester-inputs {
margin: 1.2em 0;
}