noxz-sites

A collection of a builder and various scripts creating the noxz.tech sites
git clone https://noxz.tech/git/noxz-sites.git
Log | Files | README | LICENSE

git.noxz.tech/pub/style.css
1body {
2	color                           : #000;
3	background-color                : #fff;
4	font-family                     : monospace;
5}
6
7h1, h2, h3, h4, h5, h6 {
8	font-size                       : 1em;
9	margin                          : 0;
10}
11
12img, h1, h2 {
13	vertical-align                  : middle;
14}
15
16img {
17	border                          : 0;
18}
19
20a {
21	color                           : #005386;
22	text-decoration                 : none;
23}
24
25a:hover {
26	text-decoration                 : underline;
27}
28
29table tr.nohi td {
30	font-weight                     : bold;
31}
32
33table td {
34	padding                         : 0 0.4em;
35	white-space                     : nowrap;
36}
37
38#index,
39#files,
40#log,
41#tags,
42#index td:nth-child(2),
43#files td:nth-child(2),
44#log td:nth-child(2),
45#tags td:nth-child(2) {
46	width                           : 100%;
47}
48
49#index td,
50#files td,
51#log td,
52#tags td {
53	padding                         : 0.2em 0.4em;
54	vertical-align                  : top;
55	white-space                     : nowrap;
56}
57
58#index tr:hover td,
59#files tr:hover td,
60#log tr:hover td,
61#tags tr:hover td {
62	background-color                : #f3f1f9;
63}
64
65thead tr:hover td,
66tr.nohi:hover td {
67	background-color                : transparent !important;
68}
69
70#index tr td:nth-child(2),
71#files tr td:nth-child(2),
72#log tr td:nth-child(2),
73#tags tr td:nth-child(2) {
74	white-space                     : normal;
75}
76
77#files tr td:nth-child(3) {
78	text-align                      : right;
79}
80
81#files tr td:nth-child(3):after {
82	content                         : " bytes"
83}
84#files tr.nohi td:nth-child(3):after {
85	content                         : ""
86}
87
88.desc {
89	color                           : #777;
90}
91
92hr {
93	border                          : 0;
94	border-top                      : 1px solid #777;
95	height                          : 1px;
96}
97
98pre {
99	font-family                     : monospace;
100	tab-size                        : 4;
101}
102
103pre a:target {
104	background                      : #efefef;
105}
106
107pre a.line {
108	display                         : inline-block;
109	text-align                      : right;
110	width                           : 32px;
111	color                           : #777;
112	padding-right                   : 5px;
113	margin-right                    : 5px;
114	border-right                    : 3px solid #eee;
115
116	-webkit-user-select             : none;
117	-moz-user-select                : none;
118	-ms-user-select                 : none;
119	user-select                     : none;
120}
121
122pre a.h {
123	color                           : #00c;
124	text-decoration                 : none;
125}
126
127pre a.h:target {
128	background                      : #efefff;
129}
130
131pre a.i, table span.i {
132	color                           : #080;
133	text-decoration                 : none;
134}
135
136pre a.i:target {
137	background                      : #efffef;
138}
139
140pre a.d, table span.d {
141	color                           : #d00;
142	text-decoration                 : none;
143}
144
145pre a.d:target {
146	background                      : #ffefef;
147}
148
149pre b.r {
150	color                           : #808;
151	padding-left                    : 1em;
152}