12345678910111213141516171819202122232425262728293031323334 |
- /**
- * 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
- * @author Florian Volk
- * @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-hti { border: 1px solid black; padding: 1em; white-space: nowrap; display: inline-block; }
- .certaintrust-hti > h1 { text-align: center; margin:0; margin-bottom: 1em; }
- .certaintrust-hti > .certaintrust-hti { border: 0; padding: 0; margin: 0; }
- .certaintrust-hti-e { margin-top: 1em; }
- .certaintrust-hti canvas { border: 1px solid black; }
- .certaintrust-hti form { float: left; margin-right: 1.5em; }
- .certaintrust-hti label { display: block; float: left; width: 7em; font-size: 1em; }
- .certaintrust-hti input { width: 4em; margin-bottom: 0.5em; }
|