-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
146 lines (144 loc) · 2.51 KB
/
style.css
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
width: 60%;
height: 100vh;
margin: 0px auto;
font-family: poppins;
}
body header {
height: 20%;
display: flex;
align-items: center;
column-gap: 50px;
}
body header .title, body header .content {
flex: 1;
}
body header .title h3 {
font-size: 36px;
}
body header .content h5 {
font-size: 16px;
margin-bottom: 10px;
text-transform: uppercase;
}
body header .content p {
font-size: 14px;
}
body main {
display: grid;
grid-template-columns: repeat(3, 1fr);
column-gap: 50px;
row-gap: 70px;
padding: 50px 0px;
}
body main .profile {
display: flex;
justify-content: center;
position: relative;
}
body main .profile figure {
width: 85%;
display: flex;
flex-direction: column;
position: relative;
}
body main .profile figure img {
width: 80%;
}
body main .profile figure figcaption {
font-size: 16px;
font-weight: 500;
margin-top: 12px;
text-transform: capitalize;
cursor: pointer;
}
body main .profile figure::after {
content: attr(data-value);
width: 100%;
transform-origin: 0 0;
transform: rotate(90deg);
position: absolute;
text-transform: uppercase;
font-size: 12px;
right: -92%;
}
body main .profile:nth-child(2) {
margin-top: 70px;
}
body main .profile:nth-child(4) {
margin-top: -70px;
}
body main .profile:nth-child(6) {
margin-top: -70px;
}
body footer {
height: 5%;
color: #BDBDBD;
display: grid;
place-items: center;
font-size: 12px;
}
body footer a {
text-decoration: none;
color: inherit;
}
@media screen and (max-width: 1440px) {
body {
width: 70%;
}
body main {
column-gap: 50px;
}
}
@media screen and (max-width: 1024px) {
body {
width: 80%;
}
body main {
column-gap: 35px;
}
}
@media screen and (max-width: 768px) {
body {
width: 90%;
}
body main {
column-gap: 25px;
}
}
@media screen and (max-width: 600px) {
body {
width: 90%;
height: auto;
margin: 50px auto 10px;
}
body header {
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
row-gap: 20px;
}
body header .title {
align-self: flex-start;
}
body header .title h3 {
font-size: 30px;
}
body main {
grid-template-columns: repeat(2, 1fr);
column-gap: 0px;
row-gap: 0px;
}
body main .profile:nth-child(2), body main .profile:nth-child(4), body main .profile:nth-child(6) {
margin-top: 50px;
}
body main .profile:nth-child(3), body main .profile:nth-child(5) {
margin-top: 0px;
}
}