File: base.css

package info (click to toggle)
circuits 3.2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,980 kB
  • sloc: python: 17,583; javascript: 3,226; makefile: 100
file content (142 lines) | stat: -rw-r--r-- 1,921 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
@import url(/css/ext/ext-all.css);
@import url(/css/ext/xtheme-aero.css);

/* Main Layout */

* {
	font-family: "Bitstream Vera Sans", "Verdana", sans-serif;
	font-size: 10pt;
	margin: 0;
	padding: 0;
}

body {
	background: none rgb(240, 255, 240);
	min-width: 600px;
}

h1 {
	font-size: 18pt;
}

h2 {
	font-size: 16pt;
}

h3 {
	font-size: 14pt;
}

h4 {
	font-size: 12pt;
}

h5 {
	font-size: 8pt;
}

a:link, a:visited {
	color: #888888;
	text-decoration: none;
	border-bottom: 1px dashed;
}

a:focus, a:hover, a:active {
	border-bottom: 1px solid;
}

#window {
	position: relative;
	width: 600px;
	top: 10px;
	margin: 0 auto;
	border: 2px solid rgb(100, 155, 100);
	background: none rgb(255, 255, 255);
}

#header, #footer {
	background: none rgb(34, 170, 34);
	color: rgb(255, 255, 255);
}

#header {
	padding: 20px 5px 5px 5px;
}

#header h1 {
	text-align: center;
}

#footer {
	padding: 5px 10px;
}

/* Content */

#main {
	margin: 0 auto;
	padding: 20px;
	height: 300px;
	border: none;
	background: none rgb(255, 255, 255);
}

.main h2 {
	padding: 6px 0;
}

.main dt {
	padding: 4px 0:
}

.main dd {
	padding: 0 20px;
}

/* Menu */

#menu {
	color: rgb(0, 0, 0);
	background-color: transparent;
	font-family: arial, helvetica, sans-serif;
	white-space: nowrap;
	list-style-type: none;
	margin-top: 20px;
}

#menu ul {
	background: none;
}

#menu li {
	display: inline;
	border: 1px solid rgb(70, 100, 70);
	background: none rgb(255, 255, 240);
}

#menu a {
	padding: 2px;
	margin: 0px;
	color: rgb(0, 0, 0);
	text-decoration: none;
	border: none;
}

#menu a:hover {
	background: rgb(100, 100, 100);
}

/* validate icons */

#icons {
	float: right;
	margin-top: 5px;
}

#icons img, a:link, a:active, a:focus, a:visited, a:hover {
	border: none;
}

#message {
	color: green;
}