-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
61 lines (53 loc) · 1.02 KB
/
style.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
#gpxmaker{
margin: 20px auto;
}
.button {
background: #3498db;
background-image: linear-gradient(to bottom, #3498db, #2980b9);
border-radius: 8px;
font-family: Arial;
color: #ffffff;
font-size: 12px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.button:hover {
background: #3cb0fd;
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
#upload-icon{
display: inline-block;
width: 20px;
}
#upload-icon span{
position: absolute;
font-size: 18px;
}
#upload-icon .cloud1{
margin-top: -20px;
}
#upload-icon .cloud2{
margin-top: -8px;
transform: rotate(180deg);
}
.file-upload{
/* inheritance from .button */
cursor: pointer;
display: inline-block;
}
.file-upload i{
font-style: normal;
position: absolute;
margin-top: -9px;
margin-left: 3px;
color: #3cb0fd;
font-weight: bold;
}
#files, input[type="file"] {
display: none;
}
a{
color: #3cb0fd;
text-decoration: none;
}