Subversion Repositories SvarDOS

Rev

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