Subversion Repositories SvarDOS

Rev

Rev 1242 | Rev 1753 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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