-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
82 lines (75 loc) · 1.16 KB
/
about.css
File metadata and controls
82 lines (75 loc) · 1.16 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
h1{
text-align: center;
font-size: 50px;
margin-top: 50px;
font-family: "Playfair Display";
}
h3{
font-size: 20px;
font-weight: normal;
color: #4b4b4d;
}
h1, h3{
margin: 0.5;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #f0f0f0;
text-align: center;
padding: 10px 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
z-index: 1000;
}
.navbar ul {
list-style: none;
padding: 0;
margin: 0;
display: inline-flex;
gap: 30px;
}
.navbar a {
text-decoration: none;
color: #333;
font-weight: bold;
font-family: 'Arial', sans-serif;
font-size: 18px;
transition: color 0.3s;
}
.navbar a:hover {
color: #858a8c;
}
body {
padding-top: 60px;
}
.about-me {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 900px;
margin: 50px auto;
gap: 20px;
padding: 20px;
}
.about-text {
flex: 1;
}
.about-text h1 {
text-align: left;
}
.about-text h3 {
text-align: left;
line-height: 1.6;
}
.about-image {
flex: 1;
text-align: right;
}
.about-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}