-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
41 lines (35 loc) · 707 Bytes
/
contact.css
File metadata and controls
41 lines (35 loc) · 707 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
.contact-card{
width: 80%;
padding: 2rem;
display: flex;
flex-direction: column;
margin-bottom: 2rem;
}
.contact-card-item{
margin-bottom: 2rem;
}
.contact-card-container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
@media (min-width: 40rem) {
.contact-card-container{
flex-direction: row;
justify-content: space-around;
align-items: stretch;
width: 80%;
margin: 0 auto auto;
}
.contact-card{
width: max-content;
min-width: 10rem;
margin: 5px;
}
}
@media (min-width: 62rem) {
.contact-card{
min-width: 15rem;
}
}