-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (80 loc) · 2.33 KB
/
styles.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
body {
margin: 0;
font-family: 'Questrial', sans-serif;
}
small {
text-align: center;
margin-top: 3em;
}
.centered {
margin-top: 2em;
display: flex;
flex-flow: column wrap;
align-items: center;
}
h1 {
display: flex;
font-size: 400%;
margin: 0.2em;
color: #444;
text-shadow: 2px 2px 2px rgba(200, 200, 200, 1);
}
.gray {
color: #999;
}
.downarrow {
font-size: 500%;
margin: 0;
text-shadow: 2px 2px 2px rgba(200, 200, 200, 1);
}
.route-input {
border-color:#cccccc;
border-style:hidden;
border-radius:7px;
padding:18px;
font-size:23px;
border-width:0px;
box-shadow: 1px 0px 7px 0px rgba(42,42,42,.75);
margin: 1em;
}
.route-input:focus { outline:none; }
.gpxbutton {
-moz-box-shadow:inset 0px 1px 0px 0px #a4e271;
-webkit-box-shadow:inset 0px 1px 0px 0px #a4e271;
box-shadow:inset 0px 1px 0px 0px #a4e271;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #89c403), color-stop(1, #77a809));
background:-moz-linear-gradient(top, #89c403 5%, #77a809 100%);
background:-webkit-linear-gradient(top, #89c403 5%, #77a809 100%);
background:-o-linear-gradient(top, #89c403 5%, #77a809 100%);
background:-ms-linear-gradient(top, #89c403 5%, #77a809 100%);
background:linear-gradient(to bottom, #89c403 5%, #77a809 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#89c403', endColorstr='#77a809',GradientType=0);
background-color:#89c403;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #74b807;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:28px;
font-weight:bold;
padding:21px 76px;
text-decoration:none;
text-shadow:0px 1px 0px #528009;
}
.gpxbutton:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77a809), color-stop(1, #89c403));
background:-moz-linear-gradient(top, #77a809 5%, #89c403 100%);
background:-webkit-linear-gradient(top, #77a809 5%, #89c403 100%);
background:-o-linear-gradient(top, #77a809 5%, #89c403 100%);
background:-ms-linear-gradient(top, #77a809 5%, #89c403 100%);
background:linear-gradient(to bottom, #77a809 5%, #89c403 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77a809', endColorstr='#89c403',GradientType=0);
background-color:#77a809;
}
.gpxbutton:active {
position:relative;
top:1px;
}