-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgrid.css
More file actions
80 lines (65 loc) · 1.02 KB
/
grid.css
File metadata and controls
80 lines (65 loc) · 1.02 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
79
80
* {
font-family: 'Bosch Office Sans';
box-sizing: border-box;
}
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
padding: 0;
display: grid;
grid-template-rows: 16px auto 1fr auto 16px;
grid-template-columns: 25% 25% 25% 25%;
}
.headerStripe {
grid-column: 1 / 5;
grid-row: 1 / 2;
}
.headerStripe img {
vertical-align: top;
width: 100%;
height: 16px;
}
.headerLogo {
grid-column: 1 / 2;
grid-row: 2 / 3;
}
.headerLogo img {
width: 200px;
height: auto;
}
header {
grid-column: 2 / 4;
grid-row: 2 / 3;
}
main {
grid-column: 1 / 5;
grid-row: 3 / 4;
}
footer {
grid-column: 1 / 5;
grid-row: 4 / 5;
}
.footerStripe {
grid-column: 1 / 5;
grid-row: 5 / 6;
}
.footerStripe img {
vertical-align: bottom;
width: 100%;
height:16px;
}
.container {
margin: 1em auto;
padding: 0 1em;
}
hLink {
color: #005691;
text-decoration: none;
}
hLink:hover {
color: #23527c;
text-decoration: underline;
}