-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
108 lines (93 loc) · 1.82 KB
/
styles.css
File metadata and controls
108 lines (93 loc) · 1.82 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
106
107
108
/* ---------- GLOBAL ---------- */
html, body {
height: 100%;
overflow-x: hidden;
}
body {
margin: 0;
background: #FFFAF2;
font-family: 'Inter', sans-serif;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
/* ---------- NAVBAR ---------- */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 4px 20px;
background-color: #EDCDC9;
border-radius: 0 0 20px 20px;
border-bottom: 1px solid #ddd;
width: 100%;
height:60px;
}
.nav-right {
display: flex;
gap: 20px;
}
.nav-right a {
text-decoration: none;
margin-left: 16px;
padding: 4px 12px;
border-radius: 20px;
color: #4a3f3f;
font-size: 14px;
transition: 0.2s ease;
}
.nav-right a:hover {
background: #FFFAF2;
color: #EDCDC9;
}
/* ---------- MAIN CONTENT ---------- */
.layout {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
}
/* Intro box container */
.intro {
display: flex;
align-items: center;
gap: 24px;
background-color: white;
padding: 24px;
border-radius: 12px;
box-shadow: 0 2px 5px rgba(194,195,149,0.49);
}
/* Profile image */
.intro img {
width: 220px;
height: 220px;
object-fit: cover;
border-radius: 12px;
border: 3px solid #EDCDC9;
}
/* Text section */
.intro-text {
display: flex;
flex-direction: column;
justify-content: center;
}
.intro-text h2 {
margin: 0 0 10px 0;
font-size: 28px;
color: #4a3f3f;
}
.intro-text p {
font-size: 16px;
line-height: 1.6;
max-width: 600px;
color: #4a3f3f;
}
/* ---------- FOOTER ---------- */
.footer {
margin-top: auto;
background-color: #EDCDC9;
padding: 20px;
text-align: center;
border-radius: 20px 20px 0 0;
font-size: 14px;
color: #4a3f3f;
}