-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (65 loc) · 1.1 KB
/
Copy pathstyle.css
File metadata and controls
68 lines (65 loc) · 1.1 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
.nav{
background-color: aqua;
height: 150px;
}
.list_of_links{
height: 30px;
display: flex;
justify-content: center;
align-items: center;
list-style-type: none;
gap: 10px;
}
.list_of_links li a{
text-decoration: none;
}
.list_of_links li a:hover {
color: blue;
text-decoration: underline;
}
.header_container{
display: flex;
justify-content: flex-end;
align-items: flex-end;
padding: 20px;
}
.header {
background-color: darkkhaki;
margin: 0;
padding: 5px;
cursor: pointer;
}
.menu_item{
border: 1px solid black;
padding: 10px;
}
.container{
display: grid;
grid-template-areas:
"a b c d"
"e e c d";
grid-auto-rows: minmax(100px,auto);
grid-column-gap: 10px;
}
.item_1{
grid-area: a;
}
.item_2{
grid-area: b;
}
.item_3{
grid-area: c;
}
.item_4{
grid-area: d;
}
.item_5{
grid-area: e;
}
.footer {
background-color: aqua;
display: flex;
justify-content: flex-start;
align-items: flex-start;
padding: 20px;
}