-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (42 loc) · 856 Bytes
/
Copy pathstyles.css
File metadata and controls
60 lines (42 loc) · 856 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
48
49
50
51
52
53
54
55
56
57
58
59
60
.main{
justify-content: center;
align-items: center;
align-content: center;
display: grid;
}
header{
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
background-color:rgb(106, 161, 106);
height: 200px;
}
.grid-container {
display: inline-grid;
grid-template-columns: repeat(3,1fr);
border: lightsalmon;
grid-template-rows: auto auto auto;
grid-gap: 20px;
width: 100%;
justify-content: center;
background-color: lightseagreen;
}
h2{
display: grid;
grid-template-columns: repeat(3,1fr);
text-decoration: overline;
text-decoration-style: 5px solid;
}
@media(max-width:576px){
.grid-container{
display:grid;
grid-template-columns: 1fr;
}
}
@media(min-width:992px){
.header{
width: 100%;
height: 100%;
}
}