certainTrustTViz.css 992 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * CertainTrust SDK
  3. *
  4. * Implements the computational trust model "CertainTrust"
  5. * in JavaScript.
  6. * See <http://www.tk.informatik.tu-darmstadt.de/de/research/smart-security-and-trust/> for further details.
  7. *
  8. *
  9. * Telecooperation Department, Technische Universität Darmstadt
  10. * <http://www.tk.informatik.tu-darmstadt.de/>
  11. *
  12. * Prof. Dr. Max Mühlhäuser <max@informatik.tu-darmstadt.de>
  13. * Florian Volk <florian.volk@cased.de>
  14. *
  15. *
  16. * @author David Kalnischkies
  17. * @version 1.0
  18. */
  19. /* This Source Code Form is subject to the terms of the Mozilla Public
  20. * License, v. 2.0. If a copy of the MPL was not distributed with this
  21. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  22. .certaintrust-tviz-axes line {
  23. shape-rendering: crispedges;
  24. }
  25. .certaintrust-tviz-axis-right text {
  26. text-anchor: start;
  27. stroke-width: 0;
  28. }
  29. .certaintrust-tviz-axis-left text {
  30. text-anchor: end;
  31. stroke-width: 0;
  32. }
  33. .certaintrust-tviz-arcs path:hover {
  34. stroke: skyblue;
  35. stroke-width: 3;
  36. }