-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (48 loc) · 755 Bytes
/
style.css
File metadata and controls
56 lines (48 loc) · 755 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
body {
background: #0f1724;
color: #e6eef6;
font-family: Inter, system-ui, sans-serif;
margin: 0;
line-height: 1.6;
}
.container {
max-width: 900px;
margin: 40px auto;
padding: 20px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.photo img {
width: 120px;
height: 120px;
border-radius: 12px;
object-fit: cover;
}
h1 {
font-size: 2em;
margin: 0;
}
.sub {
color: #9aa4b2;
margin-top: 5px;
}
.links a {
color: #6ee7b7;
margin-left: 10px;
text-decoration: none;
}
main section {
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
padding: 20px;
margin-top: 20px;
}
footer {
text-align: center;
margin-top: 30px;
color: #9aa4b2;
}