-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (40 loc) · 725 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (40 loc) · 725 Bytes
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
input:invalid {
border-color: red;
}
.container {
display: grid;
grid-template: 80px 80px 400px 80px / 80px 240px;
gap: 15px;
}
.container > div {
text-align: center;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-size: large;
color: white;
border-radius: 10px;
}
#header {
background-color: teal;
grid-column: 1 / 3;
/* grid-row: 1; */
}
#nav {
background-color: paleturquoise;
grid-column: 2;
grid-row: 2;
}
#sidebar {
background-color: blue;
/* grid-column: 1; */
grid-row: 2 / 4;
}
#article {
background-color: blueviolet;
grid-column: 2;
grid-row: 3;
}
#footer {
background-color: grey;
/* grid-row: 4; */
grid-column: 1 / 3;
}