-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_3.css
More file actions
71 lines (71 loc) · 1.41 KB
/
style_3.css
File metadata and controls
71 lines (71 loc) · 1.41 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #dce6eb;
font-family:'Trebuchet MS', Arial;
font-size: 10px;
width: 100%;
}
.navigation{
display: flex;
list-style-type: none;
gap: 200px;
justify-content: space-around;
height: 100%;
width: 100%;
background-color:azure;
}
.grid-container {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: 10px 200px 600px;
grid-template-areas:
"n n n n n n n n n n n n"
"h h h h h h h h h h h h"
"l l l l c c c c r r r r"
"l l l l c c c c r r r r"
"l l l l c c c c r r r r";
}
.grid-item{
place-items: center;
font-size: 20px;
height: 100%;
width: auto;
display: flex;
flex-direction: column;
justify-content: space-around;
/*border: 1px solid #00A383;*/
padding-bottom: 20px;
}
.header{
grid-area: h;
text-align: center;
/*
background-color:azure;
*/
}
.left{
justify-content: space-between;
margin-bottom: 10%;
grid-area: l;
background-color:#009999;
}
.center{
justify-content: space-between;
margin-bottom: 10%;
grid-area: c;
background-color: #33CCCC;
}
.right{
justify-content: space-between;
margin-bottom: 10%;
grid-area: r;
background-color: #3AA6D0;
}
p{
text-align: center;
padding: 0px 10px;
}