-
Notifications
You must be signed in to change notification settings - Fork 1
/
EtherProof.css
101 lines (86 loc) · 1.68 KB
/
EtherProof.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
body {
text-align: center;
font-family: words;
background-color: #eee6ff;
}
h1 {
font-size: 40px;
}
input[type="button"] {
padding: 10px;
font-family: words;
border: 1px solid black;
cursor: pointer;
background-color: #e6f9ff;
font-size: 20px;
}
input[type="button"]:hover {
background-color: #99e7ff;
}
#myFile {
display: none;
}
select, input[type="text"] {
padding: 5px;
background-color: white;
font-family: words;
}
#drop-zone {
width: 300px;
height: 200px;
position:absolute;
left:50%;
margin-left:-150px;
border: 2px dashed rgba(0,0,0,.3);
border-radius: 20px;
text-align: center;
position: relative;
line-height: 180px;
font-size: 20px;
color: rgba(0,0,0,.3);
font-family: words;
}
#drop-zone input {
position: absolute;
cursor: pointer;
left: 0px;
top: 0px;
opacity:0;
}
#drop-zone.mouse-over {
border: 2px dashed rgba(0,0,0,.5);
color: rgba(0,0,0,.5);
}
#clickHere {
position: absolute;
cursor: pointer;
left: 50%;
top: 50%;
margin-left: -50px;
margin-top: 20px;
line-height: 26px;
color: white;
font-size: 12px;
width: 100px;
height: 26px;
border-radius: 4px;
background-color: #3b85c3;
font-family: words;
}
#clickHere:hover {
background-color: #4499DD;
}
table, th, tr, td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px;
background-color: #e6ffe6;
text-align: center;
}
th {
background-color: #99ff99;
}
@font-face {
font-family: words;
src: url(Quicksand-Regular.otf);
}