-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (56 loc) · 826 Bytes
/
style.css
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
body {
margin: 10px;
display: flex;
flex-wrap: wrap;
}
header,
footer,
.full-width {
flex: 1 100%;
}
section {
display: flex;
flex-flow: row wrap;
}
section>h3,
section>h4 {
margin: 0;
}
section>article {
flex: 1 100%;
padding: 10px;
display: flex;
align-items: center;
}
section>article>div {
padding: 10px;
}
section>article>div>form {
padding: 10px 0;
}
section>#invalidData {
color: red;
padding: 10px;
}
section>aside {
flex: 2 auto;
padding: 10px;
}
table {
border-collapse: collapse;
}
table>caption {
padding: 10px;
}
table>thead>tr>th {
text-align: left;
padding: 10px;
}
table>tbody>tr>td {
padding: 10px;
}
table>thead>tr,
table>tbody>tr {
border-top: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
}