-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptions.css
More file actions
126 lines (103 loc) · 2.37 KB
/
options.css
File metadata and controls
126 lines (103 loc) · 2.37 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
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
body {
width: 600px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
padding: 2em 3em;
font-size: 1em; }
input, textarea, .button {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 1em;
outline: none;
border-radius: 4px;
padding: 0.3em 0.5em;
border: none; }
input#from-text, textarea#from-text, .button#from-text {
background-color: #fdf3e8; }
input#to-text, textarea#to-text, .button#to-text {
background-color: #ecf5e0;
width: 350px; }
input {
width: 100%; }
textarea {
background-color: #f9f9f9;
width: 100%;
height: 100px; }
button, .button {
text-decoration: none;
text-shadow: none;
display: inline-block;
vertical-align: middle;
padding: 0.5em 20px;
margin: 0.5em 0;
transition: 0.2s;
border-radius: 4px;
outline: none;
border-style: none;
background-color: #f9f9f9; }
button:not([disabled]), .button:not([disabled]) {
cursor: pointer; }
button:hover, .button:hover {
background-color: #dff5c2; }
button[disabled], .button[disabled] {
background-color: #f9f9f9; }
.hidden {
display: none !important; }
.no-bottom-margin {
margin-bottom: 0; }
.float-right {
float: right; }
.float-left {
float: left; }
.grey {
color: #999; }
.note {
font-size: 12px;
padding: 0.3em 0 0.6em;
color: #999; }
.section {
position: relative; }
.section:not(:first-child) {
margin-top: 4em; }
.rule {
margin: 0.5em;
vertical-align: top; }
#rules {
width: 100%; }
#rules .fa-long-arrow-right {
margin-top: 0.3em; }
#rules td {
position: relative; }
#rules td:last-child {
text-align: right; }
#add-rule {
vertical-align: top; }
#add-rule td:nth-child(3) {
padding: 0 0.5em; }
#add-rule td:nth-child(1) {
padding-right: 0.5em; }
.from, .to {
display: table-cell;
padding: 0.3em 0.5em; }
.from, #from-text {
text-align: right; }
.add-button, .delete-button, #code-toggle-button {
cursor: pointer;
margin-top: 0.25em;
transition: 0.2s; }
.add-button:hover {
color: #85c1a4; }
.delete-button:hover {
color: #dc1a02; }
#code-toggle-button {
overflow: hidden;
margin-right: 1em; }
.CodeMirror {
height: auto;
viewportMargin: Infinity;
width: 350px;
margin-right: 0.3em;
border-radius: 4px;
background: #f9f9f9; }
#add-rule .CodeMirror {
background: #fff;
border: 1px dashed #ccc; }
/*# sourceMappingURL=options.css.map */