-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesktop.css
More file actions
66 lines (57 loc) · 1.21 KB
/
desktop.css
File metadata and controls
66 lines (57 loc) · 1.21 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
@media screen and (min-width: 425px) {
.profile .content {
display: flex;
align-items: flex-start;
flex-direction: row;
}
.projects .projects-list {
display: flex;
flex-wrap: wrap;
flex-basis: 100%;
align-items: center;
justify-content: center;
gap: 2rem;
}
.projects .projects-list > li {
height: 56rem;
width: 100%;
max-width: 50rem;
}
.projects .projects-list > li article > div > img {
width: 100%;
object-fit: cover;
object-position: center;
height: 17rem;
}
.projects .projects-list > li article > div > div {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
height: 25rem;
}
}
@media screen and (min-width: 600px) {
.skills .list {
grid-template-columns: 1fr 1fr;
}
}
@media screen and (min-width: 755px) {
.projects .projects-list {
display: grid;
grid-template-columns: 1fr 1fr;
}
.projects .projects-list > li {
width: 100%;
}
}
@media screen and (min-width: 1000px) {
.projects .projects-list {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.projects .projects-list > li {
width: 100%;
max-width: 34rem;
}
}