-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtt.css
136 lines (124 loc) · 3.61 KB
/
tt.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#tt-tb {
border: 1px solid rgba(0,0,0,.66);
border-bottom: 1px solid #000;
-webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,.15);
-moz-box-shadow: inset 0 1px 1px rgba(255,255,255,.15);
-o-box-shadow: inset 0 1px 1px rgba(255,255,255,.15);
-ms-box-shadow: inset 0 1px 1px rgba(255,255,255,.15);
box-shadow: inset 0 1px 1px rgba(255,255,255,.15);
background: #222;
background: -webkit-gradient(linear, left top, left bottom, from(#35332d), to(#1a1815));
background: -moz-linear-gradient(#35332d, #1a1815);
font: normal 12px/16px "Helvetica Neue", Arial, sans-serif;
overflow: hidden;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-o-border-radius: 8px;
border-radius: 8px;
-webkit-font-smoothing: antialiased;
margin-top: 15px;
}
#tt-tb .widget {
float: left;
padding: 10px 20px;
border-right: 1px solid #000;
border-left: 1px solid rgba(255,255,255,.1);
}
#tt-tb .widget:last-child {
border-right: none;
padding: 13px 0 13px 10px;
}
#tt-tb .widget:last-child a {
display: block;
text-decoration: none;
font-weight: bold;
font-size: 11px;
color: #555;
text-align: right;
}
#tt-tb .widget:last-child a:hover {
color: #fff;
}
#tt-tb .lorem.widget {
padding: 10px;
}
#tt-tb .lorem.widget a {
color: #fff;
display: block;
background: #9c3;
background: -webkit-gradient(linear, left top, left bottom, from(#9c3), to(#6ea120));
background: -moz-linear-gradient(#9c3, #6ea120);
background-image: -o-linear-gradient(#9c3, #6ea120);
background-image: -ms-linear-gradient(left top, #9c3 0%, #6ea120 100%);
text-shadow: #517718 1px 1px 0px;
width: 24px;
height: 24px;
padding: 10px;
text-align: center;
text-decoration: none;
font-size: 24px;
line-height: 24px;
font-family: Georgia, serif;
-webkit-border-radius: 90px;
-moz-border-radius: 90px;
-o-border-radius: 90px;
-ms-border-radius: 90px;
border-radius: 90px;
-webkit-transition-duration: .15s;
-webkit-box-shadow: inset 0 1px 1px #ccff33, 0 1px 1px #000;
}
#tt-tb .lorem.widget a:hover {
-webkit-transform: scale(1.1);
}
#tt-tb label {
text-transform: capitalize;
color: #fff;
font-size: 11px;
line-height: 12px;
display: block;
font-weight: bold;
cursor: pointer;
}
#tt-tb .chk label { display: inline; color: #aaa; }
#tt-tb .chk label:hover { color: #fff; }
#tt-tb .chk p { margin: 0; line-height: 22px; }
#tt-tb input[type="text"] {
margin-top: 6px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
padding: 3px;
width: 60px;
height: 18px;
line-height: 18px;
font-size: 12px;
color: #777;
border: none;
-webkit-font-smoothing: antialiased;
background: #42403B;
background: -webkit-gradient(linear, left top, left bottom, from(#42403B), to(#34332F));
background: -moz-linear-gradient(#42403B, #34332F);
color: #bbb;
border: 1px solid rgba(0,0,0,.75);
-webkit-box-shadow: 0 1px 1px rgba(255,255,255,.1);
-moz-box-shadow: 0 1px 1px rgba(255,255,255,.1);
-o-box-shadow: 0 1px 1px rgba(255,255,255,.1);
box-shadow: 0 1px 1px rgba(255,255,255,.1);
}
#tt-tb input[type="text"]:focus {
background: #54514b;
background: -webkit-gradient(linear, left top, left bottom, from(#54514b), to(#42403b));
background: -moz-linear-gradient(#54514b, #42403B);
background-image: -o-linear-gradient(#54514b, #42403B);
background-image: -ms-linear-gradient(left top, #54514b 0%, #42403B 100%);
outline: none;
color: #fff;
}
.specimen-editor textarea {
padding: 10px;
width: 710px;
margin-top: 5px;
resize: vertical; /* So that textarea cannot be resized into adjacent text */
}