-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (86 loc) · 1.52 KB
/
style.css
File metadata and controls
105 lines (86 loc) · 1.52 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
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
@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
* {
padding: 0;
margin: 0;
}
body {
background-color: #12172b;
font-family: "Poppins", sans-serif;
}
.container {
margin: 20px 40px;
color: white;
}
.heading {
font-size: 60px;
color: white;
}
.heading span {
font-style: italic;
font-size: 30px;
}
.profiles {
display: flex;
justify-content: space-around;
margin: 20px 80px;
}
.profile {
flex-basis: 260px;
}
.profile .profile-img {
height: 260px;
width: 260px;
border-radius: 50%;
filter: grayscale(100%);
cursor: pointer;
transition: 400ms;
}
.profile:hover .profile-img {
filter: grayscale(0);
}
.user-name {
margin-top: 30px;
font-size: 35px;
}
.profile h5 {
font-size: 18px;
font-weight: 100;
letter-spacing: 3px;
color: #ccc;
}
.profile p {
font-size: 16px;
margin-top: 20px;
text-align: justify;
}
@media only screen and (max-width: 1150px) {
.profiles {
flex-direction: column;
}
.profile {
display: flex;
flex-direction: column;
align-items: center;
}
.profile p {
text-align: center;
margin: 20px 60px 80px 60px;
font-size: 20px;
}
}
@media only screen and (max-width: 900px) {
.heading {
font-size: 40px;
color: white;
text-align: center;
}
.heading span {
font-size: 15px;
}
.profiles {
margin: 20px 0;
}
.profile p {
margin: 20px 10px 80px 10px;
}
}