-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-styles.css
More file actions
66 lines (53 loc) · 1.08 KB
/
project-styles.css
File metadata and controls
66 lines (53 loc) · 1.08 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
.projects-section {
width: 100%;
padding: var(--padding);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--athens-gray);
}
.project-boxes {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 35px;
}
.project-box {
padding: var(--padding);
border: 1px solid var(--oxford-blue);
margin: var(--margin);
background-color: var(--athens-gray);
align-items: center;
justify-content: center;
text-align: center;
min-width: 20rem;
}
.project-box img {
width: 6rem;
}
.project-box h3 {
font-size: 1.1rem;
margin: 1rem 0;
}
.project-box p {
font-size: 2rem;
color: var(--salmon);
margin: 1rem 0;
}
.project-box a {
color: var(--salmon);
}
@media(min-width:769px) {
.projects-section {
/* max-width: 40rem; */
}
.project-boxes {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
}