-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
105 lines (103 loc) · 3.02 KB
/
stylesheet.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
102
103
104
105
.myButton {
-moz-box-shadow: 0px 1px 0px 0px #1c1b18;
-webkit-box-shadow: 0px 1px 0px 0px #1c1b18;
box-shadow: 0px 1px 0px 0px #1c1b18;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #eae0c2), color-stop(1, #ccc2a6));
background:-moz-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
background:-webkit-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
background:-o-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
background:-ms-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
background:linear-gradient(to bottom, #eae0c2 5%, #ccc2a6 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eae0c2', endColorstr='#ccc2a6',GradientType=0);
background-color:#eae0c2;
-moz-border-radius:15px;
-webkit-border-radius:15px;
border-radius:10px;
border:2px solid #333029;
display:inline-block;
cursor:pointer;
color:#505739;
font-family:Verdana;
font-size:18px;
font-weight:500;
padding:6px 10px;
text-decoration:none;
}
.myButton:disabled {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bab092), color-stop(1, #aca286));
background:-moz-linear-gradient(top, #bab092 5%, #aca286 100%);
background:-webkit-linear-gradient(top, #bab092 5%, #aca286 100%);
background:-o-linear-gradient(top, #bab092 5%, #aca286 100%);
background:-ms-linear-gradient(top, #bab092 5%, #aca286 100%);
background:linear-gradient(to bottom, #bab092 5%, #aca286 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bab092', endColorstr='#aca286',GradientType=0);
cursor: default;
}
.myButton:hover:not(:disabled) {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ccc2a6), color-stop(1, #eae0c2));
background:-moz-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
background:-webkit-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
background:-o-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
background:-ms-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
background:linear-gradient(to bottom, #ccc2a6 5%, #eae0c2 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccc2a6', endColorstr='#eae0c2',GradientType=0);
background-color:#ccc2a6;
color:#808769;
}
.myButton:active {
position:relative;
top:1px;
}
#top {
height: 40px;
padding: 10px;
background-color: #c9c4b5;
}
#files {
display: inline-block;
}
#slider-range {
display: inline-block;
width: 200px;
margin: 0px 15px;
}
ul {
list-style-type: none;
}
#main {
display: none;
white-space: nowrap;
width:auto;
}
#inputForm {
display: inline-block;
}
#input {
display: inline-block;
border: 2px solid #333029;
}
button {
display: inline-block;
}
#response {
display: inline;
white-space: nowrap;
font-family: Helvetica;
}
#response:not(:empty) {
padding: 5px;
border: 2px solid #333029;
border-radius: 5px;
background-color: #fff;
}
#container {
display: none;
height: calc(100vh - 78px);
overflow: hidden;
}
#img {
transform-origin: top left;
}
#loading {
display: none;
}