-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.css
More file actions
64 lines (62 loc) · 1.73 KB
/
example.css
File metadata and controls
64 lines (62 loc) · 1.73 KB
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
/* Edit this file to meet your CSS needs, or copy and paste these styles into your application's CSS file */
.jquery-input-file-outer-wrapper{
font-family:verdana,helvetica,arial,sans-serif;
}
.jquery-input-file-fake-file{
width: 300px !important;
height:28px;
border-radius:4px;
-moz-border-radius:4px;
-webkit-border-radius:4px;
}
/* blue button */
div.btn-blue{
background-color:#6BC5ED;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.2, #48A4CE),
color-stop(0.95, #6BC5ED)
);
background: -moz-linear-gradient(center bottom , #48A4CE 2%, #6BC5ED 95%) repeat scroll 0 0 transparent;
border: 1px solid #3E94BB;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
color: #FFFFFF;
cursor: pointer;
padding: 0 18px 4px;
text-shadow: -1px 1px 1px #404040;
}
div.btn-blue:hover{
border-color:#135572;
color:#1F1F1F;
text-shadow: -1px 1px 1px #fff;
}
/* gray button */
div.btn-gray{
background-color:#CECECE;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.2, #ADADAD),
color-stop(0.95, #CECECE)
);
background: -moz-linear-gradient(center bottom , #ADADAD 2%, #CECECE 95%) repeat scroll 0 0 transparent;
border: 1px solid #9c9c9c;
border-top-color: #c7c7c7;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
color: #FFFFFF;
cursor: pointer;
padding: 0 18px 4px;
text-shadow: -1px 1px 1px #404040;
}
div.btn-gray:hover{
border-color:#e4e4e4;
color:#363636;
text-shadow: -1px 1px 1px #fff;
}