-
Notifications
You must be signed in to change notification settings - Fork 0
/
ftftft.css
135 lines (132 loc) · 2.01 KB
/
ftftft.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
/* This file is part of ftftft by Ben Wheeler <[email protected]> */
html,body {
height: 100%;
}
body {
background-color: #eee;
color: black;
font-family: sans-serif;
}
#maintitle {
font-family: serif;
font-style: italic;
letter-spacing: 0.1em;
}
#subtitle {
font-family: serif;
font-size: 2.0rem;
color: #777;
}
#subtitle .initial {
color: #555;
font-style: italic;
font-size: 2.2rem;
letter-spacing: 0.1rem;
}
#regexbuttons {
float: left;
margin: 2rem 0 0 1rem;
}
#generatetoolbar {
padding: 2rem 1rem 1rem 1rem;
}
#generatebtn {
margin: 1rem 0 0 1rem;
}
#generatebuttons {
float: left
}
#generatemessage {
color: #aaa;
text-align: right;
}
#clipboardbtnarea {
float: right;
}
#clipboardbtn {
}
#clipboardsuccess {
display: none;
margin: 1rem 1rem 0 0;
}
#clipboardfailure {
display: none;
margin: 1rem 1rem 0 0;
}
footer {
border-top: 1px solid black;
}
.htmlcode {
background-color: #333;
font-family: monospace;
color: #ccc;
}
#templatehtml {
width: 100%;
height: 21rem;
}
.inputhtml, .outputhtml {
width: 100%;
height: 50rem;
}
.preview {
width: 100%;
height: 50rem;
background-color: white;
color: black;
font-family: sans-serif;
}
#regexarea {
height: 30rem;
overflow: scroll;
border: 1px solid black;
padding: 0 2rem;
}
#regexes {
width: 100%;
}
.regexrow td {
padding-bottom: 5px;
}
.regexrow td.regex {
}
.regexrow td.replacement {
}
.regexrow td.flags {
width: 5rem;
}
.regexrow input {
font-size: large;
color: #eee;
background-color: #333;
}
.regexrow input.regex,
.regexrow input.replacement {
width: 90%;
margin-right: 5%;
}
.regexrow input.flags {
width: 90%;
}
#codearea {
display: none;
position: relative; /* To allow layering the clipboard button over as p:absolute */
top: 0;
left: 0;
margin-left: 2rem;
}
#codeoutput {
width: 100%;
height: 20rem;
padding: 2rem;
}
#adddocbuttons {
margin-bottom: 3rem;
}
.author {
font-family: serif;
font-style: italic;
font-size: 1.4rem;
color: #777;
margin: 2rem;
}