-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
49 lines (41 loc) · 816 Bytes
/
style1.css
File metadata and controls
49 lines (41 loc) · 816 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
body {
font-family: 'Arial', sans-serif;
margin: 0;
}
.profile-container {
max-width: 900px;
margin: 30px auto;
background-color: #b7ccae;
box-shadow: 0 0 20px rgba(167, 173, 202, 0.1);
border-radius: 30px;
overflow: hidden;
}
.profile-header {
display: flex;
align-items: center;
padding: 40px;
border-bottom: 3px solid #040a01;
}
.avatar {
width: 80px;
height: 80px;
background-color: #111111;
border-radius: 60%;
margin-right: 20px;
}
.user-info h1 {
margin: 0;
font-size: 2.3em;
}
.user-info p {
margin: 10px 0;
color: #050203;
}
.profile-content {
padding: 20px;
}
.tweet {
border-bottom: 5px solid #0a0a0a;
padding-bottom: 20px;
margin-bottom: 10px;
}