-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (49 loc) · 872 Bytes
/
style.css
File metadata and controls
53 lines (49 loc) · 872 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
44
45
46
47
48
49
50
51
52
53
.profile-cards{
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 100px;
justify-content: center;
}
*{
margin: 0;
padding: 0; box-sizing: border-box;
}
body{
width:100%;
margin: 0 auto;
}
.card{
width: 200px;
border: 1px solid #dfdbdb ;
box-sizing: border-box;
padding: 10px;
box-shadow: 2px 2px 2px 2px #dfdbdb;
text-align: center;
border-radius: 10px;
}
.card img{
width: 95%;
}
.profile-cards .cards{
display: flex;
flex-direction: column;
gap:20px;
}
@media only screen and (max-width:640px) {
.profile-cards{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0 20px;
}
.card{
width:100%;
padding: 10px;
}
.card img{
width: 90%;
}
}
/* testing */