Subversion Repositories SvarDOS

Rev

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

Rev 1242 Rev 1676
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 {
-
 
60
  display: flex;
-
 
61
  justify-content; start;
-
 
62
}
-
 
63
 
-
 
64
div.download div {
-
 
65
  display: flex;
-
 
66
  flex-direction: column;
-
 
67
  border: 1px #aaa solid;
-
 
68
  border-radius: 0.25em;
-
 
69
  margin: 0.75em 3em 0.75em 0.25em;
-
 
70
  padding: 0.2em 0.75em;
-
 
71
}
-
 
72
 
-
 
73
div.download div p {
-
 
74
  margin: 0 0 0.5em 0;
-
 
75
}
-
 
76
 
59
a:link { /* unvisited link */
77
a:link { /* unvisited link */
60
  color: #008; text-decoration: none;
78
  color: #008; text-decoration: none;
61
}
79
}
62
 
80
 
63
a:visited { /* visited link */
81
a:visited { /* visited link */
64
  color: #008; text-decoration: none;
82
  color: #008; text-decoration: none;
65
}
83
}
66
 
84
 
67
a:hover { /* mouse over link */
85
a:hover { /* mouse over link */
68
  color: #00F; text-decoration: none;
86
  color: #00F; text-decoration: none;
69
}
87
}
70
 
88
 
71
a:active { /* selected link */
89
a:active { /* selected link */
72
  color: #008; text-decoration: none;
90
  color: #008; text-decoration: none;
73
}
91
}
74
 
92
 
75
a.mateusz {
93
a.mateusz {
76
  color: inherit; text-decoration: none;
94
  color: inherit; text-decoration: none;
77
}
95
}
78
 
96
 
79
table {
97
table {
80
  margin: 1em auto;
98
  margin: 1em auto;
81
  border-spacing: 0;
99
  border-spacing: 0;
82
  border-collapse: collapse;
100
  border-collapse: collapse;
83
  text-align: left;
101
  text-align: left;
84
}
102
}
85
 
103
 
86
table th {
104
table th {
87
  text-weight: 600;
105
  text-weight: 600;
88
}
106
}
89
 
107
 
90
table :not(thead) tr:nth-child(odd) {
108
table :not(thead) tr:nth-child(odd) {
91
  background-color: #f5f5f5;
109
  background-color: #f5f5f5;
92
}
110
}
93
 
111
 
94
table thead tr {
112
table thead tr {
95
  border-bottom: 1px #bbb solid;
113
  border-bottom: 1px #bbb solid;
96
}
114
}
97
 
115
 
98
table.nls {
116
table.nls {
99
  margin: 1em auto;
117
  margin: 1em auto;
100
  border-spacing: 0;
118
  border-spacing: 0;
101
  border-collapse: collapse;
119
  border-collapse: collapse;
102
  border: none;
120
  border: none;
103
}
121
}
104
 
122
 
105
table.nls th {
123
table.nls th {
106
  font-weight: bold;
124
  font-weight: bold;
107
  text-align: center;
125
  text-align: center;
108
  font-size: 1em;
126
  font-size: 1em;
109
}
127
}
110
 
128
 
111
table.nls td {
129
table.nls td {
112
  border: 1px #777 solid;
130
  border: 1px #777 solid;
113
  padding: 0.2em 0.5em;
131
  padding: 0.2em 0.5em;
114
}
132
}
115
 
133
 
116
td.pkg {
134
td.pkg {
117
  text-align: left;
135
  text-align: left;
118
  font-size: 1em;
136
  font-size: 1em;
119
}
137
}
120
 
138
 
121
td.err {
139
td.err {
122
  background-color: #f00;
140
  background-color: #f00;
123
  text-align: center;
141
  text-align: center;
124
  font-size: 0.9em;
142
  font-size: 0.9em;
125
}
143
}
126
 
144
 
127
td.complete {
145
td.complete {
128
  background-color: #5f5;
146
  background-color: #5f5;
129
  text-align: center;
147
  text-align: center;
130
  font-size: 0.9em;
148
  font-size: 0.9em;
131
}
149
}
132
 
150
 
133
td.incomplete {
151
td.incomplete {
134
  background-color: #fbb;
152
  background-color: #fbb;
135
  text-align: center;
153
  text-align: center;
136
  font-size: 0.9em;
154
  font-size: 0.9em;
137
}
155
}
138
 
156
 
139
td.unsup {
157
td.unsup {
140
  background-color: #bbb;
158
  background-color: #bbb;
141
  text-align: center;
159
  text-align: center;
142
  font-size: 0.9em;
160
  font-size: 0.9em;
143
}
161
}
144
 
162
 
145
span.helpmsg {
163
span.helpmsg {
146
  font-size: 0.7em;
164
  font-size: 0.7em;
147
  color: #44e;
165
  color: #44e;
148
  font-weight: bold;
166
  font-weight: bold;
149
  border-radius: 1em;
167
  border-radius: 1em;
150
  background: #f7f700;
168
  background: #f7f700;
151
  vertical-align: super;
169
  vertical-align: super;
152
  padding: 0 0.3em;
170
  padding: 0 0.3em;
153
}
171
}
154
 
172