diff options
author | Bryan Sullivan <bs3131@att.com> | 2015-12-14 08:12:49 -0800 |
---|---|---|
committer | Bryan Sullivan <bs3131@att.com> | 2015-12-14 08:12:49 -0800 |
commit | b809db08c62526e1b7721c04c721a4c950827db1 (patch) | |
tree | b6e68be1b32bd8ebc88e4ddaf0d63aba37cec15a /components/congress/test-webapp/www/html/copper.css | |
parent | 9eb7ca01065b6b51de65d73dd2d9879fcedc5be7 (diff) |
Add congress field translators and various features
JIRA: COPPER-4
Change-Id: Ib0bf4118ffffee5e0ba368410c69bb7c533f669b
Signed-off-by: Bryan Sullivan <bs3131@att.com>
Diffstat (limited to 'components/congress/test-webapp/www/html/copper.css')
-rw-r--r-- | components/congress/test-webapp/www/html/copper.css | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/components/congress/test-webapp/www/html/copper.css b/components/congress/test-webapp/www/html/copper.css index 017bd89..51352d6 100644 --- a/components/congress/test-webapp/www/html/copper.css +++ b/components/congress/test-webapp/www/html/copper.css @@ -1,14 +1,21 @@ body { font-family: sans-serif; }
-@media screen and (min-width: 200px) { body { font-size:100%; } }
-@media screen and (min-width: 400px) { body { font-size:120%; } }
-@media screen and (min-width: 600px) { body { font-size:150%; } }
p { font-size: 100%; }
span { font-size: inherit; }
-table { font-size: inherit; }
-td { font-size: inherit; }
input { font-size: inherit; display: table;}
-td { font-size: inherit; }
+table { font-size: inherit; border: 1px solid darkslategray; border-collapse: collapse;
+ max-width: 100%;
+ table-layout: fixed;
+ width: 100%;
+ white-space: nowrap; }
+th { border: 1px solid darkslategray; border-collapse: collapse; overflow: hidden;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis; }
+td { border: 1px solid darkslategray; border-collapse: collapse; overflow: hidden;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis; }
button { font-size: inherit; color: white; background-color:darkslategray;
border-style:none; border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px;
margin-top:5px; margin-bottom:5px;}
|