summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-10-29 17:43:45 +0100
committerPatrick Simianer <p@simianer.de>2015-10-29 17:43:45 +0100
commitb266854348411cf5420f4347866821a7e7613887 (patch)
tree9f39c49611ba047ea720af87f16a2d59af2a2026 /static
parentb4cea5379e6448beeaf1d1b3470e07d83d63dace (diff)
css anim
Diffstat (limited to 'static')
-rw-r--r--static/main.css18
1 files changed, 15 insertions, 3 deletions
diff --git a/static/main.css b/static/main.css
index 84180c4..2f4fc6a 100644
--- a/static/main.css
+++ b/static/main.css
@@ -3,9 +3,16 @@ html {
font-size: 18px
}
+input {
+ transition: all .5s;
+ -webkit-transition: all .5s; /* Safari */
+}
+
textarea {
font-size: 2em;
- width: 100%
+ width: 100%;
+ transition: all .5s;
+ -webkit-transition: all .5s; /* Safari */
}
button {
@@ -20,9 +27,10 @@ button {
.xtrasmall { font-size:.6em }
a {
- color: #000;
+ color: #ccc;
text-decoration: underline
}
+a:hover { color: #000 }
div#wrapper {
margin: 2em;
@@ -40,6 +48,10 @@ span#status {
#raw_source_textarea, #target_textarea {
font-family: "Times New Roman", Georgia, Serif;
}
+#raw_source_textarea {
+ font-size: 2em;
+ padding: 0.1em
+}
#oov_form { display: none }
#oov_fields {
padding: 1em;
@@ -66,7 +78,7 @@ table#overview { font-size:.8em }
table#overview td.seg_text { width: 45% }
table#overview td { border-bottom: 1px solid #ccc; border-left:1px solid #ccc; padding: .25em }
table#overview tr:hover { background: #ccc }
-table#overview .doc_title { background-color: #eee; font-style:italic }
+table#overview .doc_title { background-color: #eee }
table#overview td.num { text-align:right; font-style:italic}
/* /Session overview */