-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
43 lines (42 loc) · 725 Bytes
/
styles.css
File metadata and controls
43 lines (42 loc) · 725 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
#about-me {
padding-inline: 15px;
}
body {
font-family: 'Poppins', sans-serif;
}
h1, h2, p {
font-family: 'Poppins', sans-serif;
margin-inline: 10px;
}
header {
margin-top: 1%;
margin-left: 15px;
}
#projects {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
margin-top: 2%;
}
.project {
flex-basis: 30%;
border: 5px solid #ccc;
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
}
.project-description {
padding-inline: 10px;
margin-bottom: 0px;
}
video {
width: 100%;
border-radius: 5px 5px 0 0;
}
@media (max-width: 800px) {
.project {
flex-basis: 100%;
}
}