-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (49 loc) · 982 Bytes
/
styles.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
* {
box-sizing: border-box;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.main-wrapper {
padding: 5vh 5vw 0 5vw;
text-align: center;
}
.projects-list {
width: 100%;
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
margin-top: 30px;
margin-bottom: 80px;
}
.projects-list img {
width: 400px;
box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, 0.4);
transition: all 0.2s;
}
@media only screen and (max-width: 425px) {
.projects-list img {
width: 300px;
}
}
.projects-list img:hover {
transform: scale(1.02);
box-shadow: 3px 3px 6px 7px rgba(0, 0, 0, 0.3);
}
.project-name {
margin-top: 15px;
font-size: 20px;
font-weight: 400;
}
.project-detail {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
cursor: pointer;
text-decoration: none;
color: black;
}