source: tspsg/help/html/style.css @ b2be4c19a1

appveyorimgbotreadme
Last change on this file since b2be4c19a1 was b2be4c19a1, checked in by Oleksii Serdiuk, 13 years ago

Started creating help...

  • Property mode set to 100644
File size: 1.2 KB
Line 
1@charset "utf-8";
2/*
3 *  TSPSG: TSP Solver and Generator
4 *  Copyright (C) 2007-2011 Oleksii Serdiuk <contacts[at]oleksii[dot]name>
5 *
6 *  $Id$
7 *  $URL$
8 *
9 *  This file is part of TSPSG project.
10 *  See http://tspsg.info/ for more information.
11 */
12
13@font-face { 
14          font-family: DejaVu Sans;
15          src: url('DejaVuSans.ttf') format("truetype"); 
16}
17
18@font-face { 
19          font-family: DejaVu Sans Mono;
20          src: url('DejaVuSansMono.ttf') format("truetype"); 
21}
22
23body {
24        font-family: "DejaVu Sans", "DejaVu LGC Sans", Verdana, Geneva, sans-serif;
25        font-size: 11pt;
26}
27
28p, li {
29        text-align: justify;
30}
31
32h1, h2, h3 {
33}
34
35.info {
36}
37
38.note {
39        color: orange;
40}
41
42.note:before {
43        content: "NOTE: "
44        font-weight: bold;
45}
46
47.tip {
48        color: green;
49}
50
51.tip:before {
52        content: "TIP: ";
53        font-weight: bold;
54}
55
56.warning {
57        color: red;
58}
59
60.warning:before {
61        content: "WARNING: ";
62        font-weight: bold;
63}
64
65.place {
66        font-weight: bold;
67}
68
69.code {
70        font-family: "DejaVu Sans Mono", "DejaVu LGC Sans Mono", "Lucida Console", Monaco, monospace;
71        font-size: smaller;
72}
73
74.params {
75}
76
77.params .name {
78        font-weight: bold;
79}
80
81.params .type {
82        color: #666;
83}
84
85.inprogress:before {
86        color: #666;
87        content: "NOTE: This part is work in progress... ";
88}
Note: See TracBrowser for help on using the repository browser.