diff options
Diffstat (limited to 'media')
-rw-r--r-- | media/css/trog3.css | 54 |
1 files changed, 53 insertions, 1 deletions
diff --git a/media/css/trog3.css b/media/css/trog3.css index a3e622a..3da931a 100644 --- a/media/css/trog3.css +++ b/media/css/trog3.css @@ -427,7 +427,7 @@ div#difflistajax background-color: #dfffdf;
border: thin green solid;
}
-
+/* Using in DrawingsUpload and ScanUpload*/
.fancybutton {
color: #ffffff;
font: 18px Georgia, "Times New Roman", Times, serif;
@@ -479,6 +479,58 @@ div#difflistajax background: linear-gradient(bottom, #39b2e5, #6083BF);
}
+/* Used in PhotoUpload and GPSlog upload */
+.fancybutton2 {
+ color: #ffffff;
+ font: 18px Georgia, "Times New Roman", Times, serif;
+ letter-spacing: 1px;
+
+ text-shadow: 0 1px 1px #000000;
+
+ #display: block;
+/* margin: auto; */
+ font-size: 1.2em;
+ line-height: 1.25em;
+
+ padding: 7px 25px;
+ cursor: pointer;
+ position: static;
+ background: #9ff;
+ border: 1px solid #60AABF;
+/* -moz-border-radius: 20px;
+ -webkit-border-radius: 20px;
+ -khtml-border-radius: 20px;*/
+ border-radius: 20px;
+ /*
+ -webkit-box-shadow: rgba(0, 0, 0, .25) 0 1px 1px;
+ -moz-box-shadow: rgba(0, 0, 0, .25) 0 1px 1px;
+ -o-box-shadow: rgba(0, 0, 0, .25) 0 1px 1px;*/
+ box-shadow: rgba(0, 0, 0, .25) 0 1px 1px;
+ background: #9ff;
+ background: -webkit-gradient(linear, left top, left bottom, from(#9ff), to(#6083fF));
+ background: -moz-linear-gradient(top, #9ff, #6083fF);
+ background: -o-linear-gradient(top, #9ff, #6083fF);
+ background: linear-gradient(top, #9ff, #6083fF);
+ }
+
+.fancybutton2:hover,
+.fancybutton2:focus {
+ cursor: pointer;
+ border-color: blue;
+/* -webkit-box-shadow: aqua 0 0 8px;
+ -moz-box-shadow: aqua 0 0 8px;
+ -o-box-shadow: aqua 0 0 8px; */
+ box-shadow: aqua 0 0 8px;
+}
+
+.fancybutton2:active {
+ background: #39e5b2;
+/* background: -webkit-gradient(linear, left bottom, left top, from(#39e5b2), to(#6083BF));
+ background: -moz-linear-gradient(bottom, #39e5b2, #6083BF);
+ background: -o-linear-gradient(bottom, #39e5b2, #6083BF); */
+ background: linear-gradient(bottom, #9ff, #6083BF);
+}
+
/* For the Scan upload form - to be used with a phone */
::-webkit-file-upload-button {
padding: 0.3em;
|