forked from jessegreathouse/TinyEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (66 loc) · 1.05 KB
/
style.css
File metadata and controls
67 lines (66 loc) · 1.05 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
65
66
67
.te {
border:1px solid #333;
border-bottom-width:3px;
border-top-width:3px;
margin:20px;
}
.te, .teheader {
padding:0;
}
.teheader {
border-bottom:1px solid #333;
}
.teheader:after {
content:'.';
clear: both;
display: block;
height: 0px;
text-indent:-99999px;
}
.teheader select {
width:auto;
float:left;
height:26px;
margin-top:2px;
}
.tecontrol {
display: inline-block;
}
.teheader .button {
padding: 7px;
width: 30px;
height: 30px;
margin: 0;
display:block;
float:left;
background-color:#fff;
}
.teheader .button i {
color:#333;
}
.button:hover,
.button:focus {
background-color:#333;
}
.button:hover i,
.button:focus i {
color:#fff;
}
.tecontrol.button i {
width: 16px;
height: 16px;
font-size: 16px;
}
.tedivider {
float:left;
background:#ccc;
width:1px;
height:24px;
margin-top:3px;
}
.tefooter {
border-top:1px solid #333;
}
.toggle {
margin:0;
}