-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (49 loc) · 847 Bytes
/
styles.css
File metadata and controls
58 lines (49 loc) · 847 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
54
55
56
57
58
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #000000;
}
.container {
max-width: 1024px;
max-height: 1366px;
margin: 1% auto;
padding: 20px;
box-shadow: 0px 0px 10px rgb(255, 255, 255);
border-radius: 10px;
}
img {
max-width: 20%;
height: auto;
border-radius: 87px;
background: url(<path-to-image>), lightgray 50% / cover no-repeat;
}
.profile-image {
display: flex;
justify-content: flex-end;
justify-content: space-between;
}
h1 {
color: #333;
}
p {
font-size: 18px;
line-height: 1.6;
color: #555;
}
.profile-info {
background-image: linear-gradient(135deg, #fdb9fe 42%, #8cf8e4 100%);
padding: 50px;
border-radius: 5px;
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
h1 {
font-size: 24px;
}
p {
font-size: 16px;
}
}