-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (59 loc) · 1.06 KB
/
styles.css
File metadata and controls
73 lines (59 loc) · 1.06 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
67
68
69
70
71
72
73
.container {
display: grid;
grid-template-columns: 33% 33% 33%;
background-color: bisque;
row-gap: 50px;
column-gap: 50px;
}
.whoareyou {
grid-column: 2/4;
margin-left: 60px;
}
.contbill {
top: 330px;
}
.container img {
width: 234px;
height: 340px;
align-items: center;
}
.name {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 27px;
}
.role {
font-family: 'PT Serif';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
transform: rotate(90deg);
text-transform: uppercase;
}
.contsaba {
margin-top: 80px;
margin-left: 20px;
}
.contsky {
margin-top: 20px;
}
.contgriff {
margin-top: 80px;
}
.contstan {
margin-top: 20px;
}
@media screen and (max-width: 700px){
.container {
grid-template-columns: 50% 50%;
}
.whoareyou {
grid-column: 2/3;
}
.contgriff {
margin-top: 0px;
}
}