source: tspsg/help/html/style.css @ 21c03af787

appveyorimgbotreadme
Last change on this file since 21c03af787 was 21c03af787, checked in by Oleksii Serdiuk, 11 years ago

Updated copyright endyear from 2012 to 2013.

  • 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-2013 Oleksii Serdiuk <contacts[at]oleksii[dot]name>
5 *
6 *  $Id: $Format:%h %ai %an$ $
7 *  $URL: http://tspsg.info/ $
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
32.screenshot {
33        text-align: left;
34}
35
36.note {
37        color: orange;
38}
39
40.note:before {
41        content: "NOTE: ";
42        font-weight: bold;
43}
44
45.tip {
46        color: green;
47}
48
49.tip:before {
50        content: "TIP: ";
51        font-weight: bold;
52}
53
54.warning {
55        color: red;
56}
57
58.warning:before {
59        content: "WARNING: ";
60        font-weight: bold;
61}
62
63.place {
64        font-weight: bold;
65}
66
67.code {
68        font-family: "DejaVu Sans Mono", "DejaVu LGC Sans Mono", "Lucida Console", Monaco, monospace;
69        font-size: smaller;
70}
71
72.params {
73}
74
75.params .name {
76        font-weight: bold;
77}
78
79.params .type {
80        color: #666;
81}
82
83.inprogress:before {
84        color: #666;
85        content: "NOTE: This part is work in progress... ";
86}
Note: See TracBrowser for help on using the repository browser.