1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * CertainTrust SDK
- *
- * Implements the computational trust model "CertainTrust"
- * in JavaScript.
- * See <http://www.tk.informatik.tu-darmstadt.de/de/research/smart-security-and-trust/> for further details.
- *
- *
- * Telecooperation Department, Technische Universität Darmstadt
- * <http://www.tk.informatik.tu-darmstadt.de/>
- *
- * Prof. Dr. Max Mühlhäuser <max@informatik.tu-darmstadt.de>
- * Florian Volk <florian.volk@cased.de>
- *
- *
- * @author David Kalnischkies
- * @version 1.0
- */
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
- .certaintrust-tviz-axes line {
- shape-rendering: crispedges;
- }
- .certaintrust-tviz-axis-right text {
- text-anchor: start;
- stroke-width: 0;
- }
- .certaintrust-tviz-axis-left text {
- text-anchor: end;
- stroke-width: 0;
- }
- .certaintrust-tviz-arcs path:hover {
- stroke: skyblue;
- stroke-width: 3;
- }
|