Newer
Older
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
.button {
font-size: 12px;
cursor: pointer;
}
.button.tiny {
border-radius: 96px 96px 96px 96px;
-o-border-radius: 96px 96px 96px 96px;
-ms-border-radius: 96px 96px 96px 96px;
-moz-border-radius: 96px 96px 96px 96px;
-khtml-border-radius: 96px 96px 96px 96px;
-webkit-border-radius: 96px 96px 96px 96px;
display: inline-block;
padding: 0px 8px 0px 8px;
user-select: none;
-o-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
.button.tiny.border {
border: 1px solid #ffffff;
}
.button.tiny.padded {
padding: 4px 10px 4px 10px;
}
.button.tiny.padded-large {
padding: 4px 14px 4px 14px;
}
.button.tiny.rounded {
padding: 6px 6px 6px 6px;
}
.button.tiny.enabled {
background-color: #50cb93;
}
.button.tiny.file {
position: relative;
}
.button.tiny:hover {
background-color: #50cb93;
}
.button.tiny.red:hover {
background-color: #e63946;
}
.button.tiny:active {
background-color: #2a9d8f;
}
.button.tiny.red:active {
background-color: #bf2a37;
}
.button.tiny > img {
margin-right: 6px;
margin-top: 2px;
vertical-align: top;
width: 13px;
}
.button.tiny > img.medium {
width: 20px;
}
.button.tiny > img.large {
width: 28px;
}
.button.tiny > img.very-large {
width: 38px;
}
.button.tiny.no-text > img {
margin-right: 0px;
margin-top: 0px;
}
.button.tiny.file > input[type="file"] {
cursor: pointer;
height: 100%;
left: 0px;
opacity: 0;
-o-opacity: 0;
-ms-opacity: 0;
-moz-opacity: 0;
-khtml-opacity: 0;
-webkit-opacity: 0;
position: absolute;
top: 0px;
vertical-align: top;
width: 100%;
}
.button.tiny.file > input[type="file"]::-webkit-file-upload-button {
cursor: pointer;
}