forked from ankitects/anki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.css
69 lines (58 loc) · 969 Bytes
/
editor.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
.field {
border: 1px solid #aaa;
background: #fff;
color: #000;
padding: 5px;
}
/* prevent floated images from being displayed outside field */
.field:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.fname {
vertical-align: middle;
padding: 0;
}
img {
max-width: 90%;
}
body {
margin: 5px;
}
#topbuts {
position: fixed;
height: 24px;
top: 0;
padding: 2px;
left: 0;
right: 0;
}
.topbut {
width: 16px;
height: 16px;
}
.rainbow {
background-image: -webkit-gradient(linear, left top, left bottom,
color-stop(0.00, #f77),
color-stop(50%, #7f7),
color-stop(100%, #77f));
}
.linkb {
-webkit-appearance: none;
border: 0;
padding: 0px 2px;
background: transparent;
}
.linkb:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.highlighted {
border-bottom: 3px solid #000;
}
#fields {
margin-top: 35px;
}