Subversion Repositories SvarDOS

Rev

Rev 1754 | Rev 1764 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1754 Rev 1758
1
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');
1
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');
2
@import url('mateuszbb-common.css');
2
@import url('mateuszbb-common.css');
3
@import url('mateuszbb-custom.css');
3
@import url('mateuszbb-custom.css');
4
 
4
 
5
h1 {
5
h1 {
6
  font-size: 1.35em;
6
  font-size: 1.35em;
7
  margin: 3em auto 0 auto;
7
  margin: 3em auto 0 auto;
8
  text-align: center;
8
  text-align: center;
9
  font-weight: 600;
9
  font-weight: 600;
10
}
10
}
11
 
11
 
12
p.copyr {
12
p.copyr {
13
  font-size: 1.00em;
13
  font-size: 1.00em;
14
  margin: 0 auto 4.5em auto;
14
  margin: 0 auto 4.5em auto;
15
  color: #999;
15
  color: #999;
16
  text-align: center;
16
  text-align: center;
17
}
17
}
18
 
18
 
19
h2 {
19
h2 {
20
  font-size: 1.1em;
20
  font-size: 1.1em;
21
  font-weight: bold;
21
  font-weight: bold;
22
  margin: 1.75em 0 0 0;
22
  margin: 1.75em 0 0 0;
23
  text-align: left;
23
  text-align: left;
24
}
24
}
25
 
25
 
26
p {
26
p {
27
  font-size: 1.00em;
27
  font-size: 1.00em;
28
  margin: 0.5em 0 0 0;
28
  margin: 0.5em 0 0 0;
29
  text-align: justify;
29
  text-align: justify;
30
}
30
}
31
 
31
 
32
p.wondering {
32
p.wondering {
33
  font-size: 0.95em;
33
  font-size: 0.95em;
34
  margin: 1.3em 0 0 0;
34
  margin: 1.3em 0 0 0;
35
  border: 1px #222 dashed;
35
  border: 1px #222 dashed;
36
  padding: 0.1em 0.4em;
36
  padding: 0.1em 0.4em;
37
  opacity: 0.8;
37
  opacity: 0.8;
38
}
38
}
39
 
39
 
40
html {
40
html {
41
  margin: 0;
41
  margin: 0;
42
  padding: 0;
42
  padding: 0;
43
  background-color: #ccc;
43
  background-color: #ccc;
44
}
44
}
45
 
45
 
46
body {
46
body {
47
  font-size: 1.15em;
47
  font-size: 1.15em;
48
  background-color: #fff;
48
  background-color: #fff;
49
  font-family: "Noto Sans JP", sans-serif;
49
  font-family: "Noto Sans JP", sans-serif;
50
  margin: 0 auto;
50
  margin: 0 auto;
51
  padding: 0 0.5em 0.5em 0.5em;
51
  padding: 0 0.5em 0.5em 0.5em;
52
  box-sizing: border-box;
52
  box-sizing: border-box;
53
  width: 100%;
53
  width: 100%;
54
  max-width: 60em;
54
  max-width: 60em;
55
  border: 1px #999 solid;
55
  border: 1px #999 solid;
56
  border-top: 0;
56
  border-top: 0;
57
}
57
}
58
 
58
 
59
div.download {
59
div.download {
60
  display: flex;
60
  display: flex;
61
  justify-content; start;
61
  justify-content: space-evenly;
62
  flex-wrap: wrap;
62
  flex-wrap: wrap;
-
 
63
  gap: 1em 0.5em;
-
 
64
  margin: 1em 0;
63
}
65
}
64
 
66
 
65
div.download div {
67
div.download div {
66
  display: flex;
68
  display: flex;
67
  flex-direction: column;
69
  flex-direction: column;
68
  border: 1px #aaa solid;
70
  border: 1px #aaa solid;
69
  border-radius: 0.25em;
71
  border-radius: 0.25em;
70
  margin: 0.75em 2.5em 0.75em 0.25em;
72
  margin: 0;
71
  padding: 0.2em 0.75em;
73
  padding: 0.2em 0.75em;
72
  width: 12em;
74
  width: 12em;
73
}
75
}
74
 
76
 
75
div.download div h3 {
77
div.download div h3 {
76
  text-align: center;
78
  text-align: center;
77
  font-weight: bold;
79
  font-weight: bold;
78
  font-size: 1em;
80
  font-size: 1em;
79
  margin: 0.5em 0 0 0;
81
  margin: 0.5em 0 0 0;
80
}
82
}
81
 
83
 
82
div.download div p {
84
div.download div p {
83
  margin: 0 0 0.5em 0;
85
  margin: 0 0 0.5em 0;
84
  line-height: 1.4em;
86
  line-height: 1.4em;
85
  font-size: 0.9em;
87
  font-size: 0.9em;
86
}
88
}
87
 
89
 
88
a:link { /* unvisited link */
90
a:link { /* unvisited link */
89
  color: #008; text-decoration: none;
91
  color: #008; text-decoration: none;
90
}
92
}
91
 
93
 
92
a:visited { /* visited link */
94
a:visited { /* visited link */
93
  color: #008; text-decoration: none;
95
  color: #008; text-decoration: none;
94
}
96
}
95
 
97
 
96
a:hover { /* mouse over link */
98
a:hover { /* mouse over link */
97
  color: #00F; text-decoration: none;
99
  color: #00F; text-decoration: none;
98
}
100
}
99
 
101
 
100
a:active { /* selected link */
102
a:active { /* selected link */
101
  color: #008; text-decoration: none;
103
  color: #008; text-decoration: none;
102
}
104
}
103
 
105
 
104
a.mateusz {
106
a.mateusz {
105
  color: inherit; text-decoration: none;
107
  color: inherit; text-decoration: none;
106
}
108
}
107
 
109
 
108
table {
110
table {
109
  margin: 1em auto;
111
  margin: 1em auto;
110
  border-spacing: 0;
112
  border-spacing: 0;
111
  border-collapse: collapse;
113
  border-collapse: collapse;
112
  text-align: left;
114
  text-align: left;
113
}
115
}
114
 
116
 
115
table th {
117
table th {
116
  text-weight: 600;
118
  text-weight: 600;
117
}
119
}
118
 
120
 
119
table :not(thead) tr:nth-child(odd) {
121
table :not(thead) tr:nth-child(odd) {
120
  background-color: #f5f5f5;
122
  background-color: #f5f5f5;
121
}
123
}
122
 
124
 
123
table thead tr {
125
table thead tr {
124
  border-bottom: 1px #bbb solid;
126
  border-bottom: 1px #bbb solid;
125
}
127
}
126
 
128
 
127
table.nls {
129
table.nls {
128
  margin: 1em auto;
130
  margin: 1em auto;
129
  border-spacing: 0;
131
  border-spacing: 0;
130
  border-collapse: collapse;
132
  border-collapse: collapse;
131
  border: none;
133
  border: none;
132
}
134
}
133
 
135
 
134
table.nls th {
136
table.nls th {
135
  font-weight: bold;
137
  font-weight: bold;
136
  text-align: center;
138
  text-align: center;
137
  font-size: 1em;
139
  font-size: 1em;
138
}
140
}
139
 
141
 
140
table.nls td {
142
table.nls td {
141
  border: 1px #777 solid;
143
  border: 1px #777 solid;
142
  padding: 0.2em 0.5em;
144
  padding: 0.2em 0.5em;
143
}
145
}
144
 
146
 
145
td.pkg {
147
td.pkg {
146
  text-align: left;
148
  text-align: left;
147
  font-size: 1em;
149
  font-size: 1em;
148
}
150
}
149
 
151
 
150
td.err {
152
td.err {
151
  background-color: #f00;
153
  background-color: #f00;
152
  text-align: center;
154
  text-align: center;
153
  font-size: 0.9em;
155
  font-size: 0.9em;
154
}
156
}
155
 
157
 
156
td.complete {
158
td.complete {
157
  background-color: #5f5;
159
  background-color: #5f5;
158
  text-align: center;
160
  text-align: center;
159
  font-size: 0.9em;
161
  font-size: 0.9em;
160
}
162
}
161
 
163
 
162
td.incomplete {
164
td.incomplete {
163
  background-color: #fbb;
165
  background-color: #fbb;
164
  text-align: center;
166
  text-align: center;
165
  font-size: 0.9em;
167
  font-size: 0.9em;
166
}
168
}
167
 
169
 
168
td.unsup {
170
td.unsup {
169
  background-color: #bbb;
171
  background-color: #bbb;
170
  text-align: center;
172
  text-align: center;
171
  font-size: 0.9em;
173
  font-size: 0.9em;
172
}
174
}
173
 
175
 
174
span.helpmsg {
176
span.helpmsg {
175
  font-size: 0.7em;
177
  font-size: 0.7em;
176
  color: #44e;
178
  color: #44e;
177
  font-weight: bold;
179
  font-weight: bold;
178
  border-radius: 1em;
180
  border-radius: 1em;
179
  background: #f7f700;
181
  background: #f7f700;
180
  vertical-align: super;
182
  vertical-align: super;
181
  padding: 0 0.3em;
183
  padding: 0 0.3em;
182
}
184
}
183
 
185