-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.module.css
93 lines (90 loc) · 1.78 KB
/
Project.module.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.headingOfProject {
color: #ffb400;
text-align: center;
font-size: 3.3rem;
font-family: "Hedvig Letters Serif", serif;
padding-top: 2.5rem;
}
.headingOfProject:hover {
text-shadow: 2px 2px 8px white;
transition: 0.5s;
cursor: pointer;
}
.ProjectContainer {
width: 80%;
margin: auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
place-items: center;
}
@media screen and (max-width: 1260px) {
.ProjectContainer {
width: 70%;
margin: auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
place-items: center;
}
}
@media screen and (max-width: 950px) {
.ProjectContainer {
width: 60%;
margin: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 1rem;
place-items: center;
}
}
@media screen and (max-width: 845px) {
.ProjectContainer {
width: 50%;
margin: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 1rem;
place-items: center;
}
}
@media screen and (max-width: 668px) {
.ProjectContainer {
width: 70%;
margin: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
place-items: center;
gap: 1rem;
}
}
@media screen and (max-width: 500px) {
.ProjectContainer {
width: 80%;
margin: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 1rem;
place-items: center;
}
}
@media screen and (max-width: 410px) {
.ProjectContainer {
width: 95%;
margin: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 1rem;
place-items: center;
}
}
@media screen and (max-width: 345px) {
.ProjectContainer {
width: 95%;
margin: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 1rem;
place-items: center;
}
}