forked from kawabata/iwds
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiwds-summary.css
More file actions
78 lines (68 loc) · 1.07 KB
/
Copy pathiwds-summary.css
File metadata and controls
78 lines (68 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
* {
margin: 0;
padding: 0;
border: none;
}
body {
margin-left: 0;
font-family: "Times New Roman", "Hanazono Mincho A", "Hanazono Mincho B";
}
/* Table settings */
table {
border-style: none;
/* margin: 0; */
border-collapse: collapse;
border-spacing: 1px;
z-index: 3;
}
th, td {
padding: 0.1em 5px;
}
td:first-child {
width: 40px; /* 20px */
vertical-align: top;
}
td:nth-child(2) {
width: 160px; /* 50x3 */
vertical-align: top;
}
/* Overriding default CSS settings */
h1 {
color: #000;
font-size: 1.2em;
padding: 0;
margin: 0;
text-shadow: none;
}
h2 {
color: #000;
background: #fff;
padding: 0;
margin: 0;
font-size: 1.0em;
letter-spacing: 0;
}
/* Columns */
.multicol {
column-count: 2; /* 3 */
column-gap: 1em;
}
.singlecol {
column-count: 1;
column-gap: 1em;
clear: both;
}
.invisible {
position:absolute;
z-index:-1;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 4em;
content: '';
background-color: white;
z-index: -1;
}