Annotation of embedaddon/strongswan/src/medsrv/templates/static/style.css, revision 1.1.1.1
1.1 misho 1:
2: body {
3: font-family: Verdana, Arial, Helvetica, sans-serif;
4: color: #230100;
5: background-color: #f7f4d3;
6: margin: 0;
7: }
8:
9: .content {
10: }
11:
12: .content > * {
13: background-color: #e5bf5e;
14: border: solid 2px;
15: padding: 1em 1em 1em 1em;
16: margin: 1em;
17: text-align: left;
18: }
19:
20: textarea, select, input {
21: background-color: #ffec9e;
22: border: 1px solid;
23: padding: 1px 3px 1px 3px;
24: }
25:
26: table.user input[type="text"], table.user input[type="password"] {
27: width: 15em;
28: }
29:
30: table.peer textarea {
31: height: 20em;
32: width: 42.3em;
33:
34: }
35:
36: table.peer input[type="text"] {
37: width: 38em;
38: }
39:
40: .menu {
41: text-align: right;
42: background-color: #e5bf5e;
43: padding: 3px;
44: border-bottom: solid 2px;
45: }
46:
47: a {
48: color: black;
49: text-decoration: none;
50: }
51:
52: a:hover {
53: text-decoration: underline;
54: }
55:
56: h1 {
57: margin-top: 1.5em;
58: font-size: 2.1em;
59: white-space: nowrap;
60: }
61:
62: hr {
63: border: solid 1px;
64: }
65:
66: a img {
67: border: none;
68: }
69:
70: .center {
71: text-align: center;
72: }
73:
74: .left {
75: text-align: left;
76: }
77:
78: .right {
79: text-align: right;
80: }
81:
82: .fleft {
83: margin-right: 2em;
84: float: left;
85: }
86:
87: .fright {
88: float: left;
89: }
90:
91: .cleft {
92: clear:left;
93: }
94:
95: .cright {
96: clear:right;
97: }
98:
99: .both {
100: clear:both;
101: }
102:
103: .error {
104: color: #dd0000;
105: }
106:
107: table.list * {
108: padding: 0px 1em 0px 0.2em;
109: }
110:
111: table.list tr td, table.list tr th {
112: border: solid 1px;
113: border-color: black;
114: }
115:
116: table.list tr th {
117: background-color: #ffec9e;
118: }
119:
120: table.list tr:nth-child(odd) td {
121: background-color: #f2cd6f;
122: }
123:
124: table.list tr td a {
125: text-decoration: none;
126: display: inline-block;
127: width: 100%;
128: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>