-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (47 loc) · 989 Bytes
/
style.css
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
html,
body {
font-family: Montserrat, serif;
}
h1 {
font-weight: 700;
text-align: center;
}
.version-card {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
border-radius: 15px;
align-items: center;
background: #ffffff;
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14),
0 2px 2px 0 rgba(0, 0, 0, 0.12),
0 1px 3px 0 rgba(0, 0, 0, 0.20);
}
.version-card > h2 {
text-align: center;
}
a {
color: #333333;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
grid-template-rows: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px 20px;
grid-template-areas: "M1 M2 M3" "M4 M5 M6" ". M7 .";
margin: 20px;
}
.M1 { grid-area: M1; }
.M2 { grid-area: M2; }
.M3 { grid-area: M3; }
.M4 { grid-area: M4; }
.M5 { grid-area: M5; }
.M6 { grid-area: M6; }
.M7 { grid-area: M7; }
@media (max-width: 680px) {
.grid-container {
display: flex;
flex-direction: column;
}
}