-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (107 loc) · 1.97 KB
/
style.css
File metadata and controls
122 lines (107 loc) · 1.97 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
109
110
111
112
113
114
115
116
117
118
119
120
121
html {
scroll-behavior: smooth;
}
body {
font-family: Arial, sans-serif;
margin: 0;
background: linear-gradient(140deg, #f6d365, #fda085);
color: #333;
}
header {
background-color: #ff6f61;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
color: white;
}
.logo {
font-size: 1.5em;
font-weight: bold;
}
nav a {
margin: 0 10px;
color: white;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.intro-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
max-width: 1000px;
margin: auto;
}
.intro-text {
max-width: 60%;
}
.chat-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
display: block;
margin-bottom: 10px;
}
.smedia {
width: 40px;
height: 40px;
border-radius: 50%;
transition: transform 0.2s ease;
}
.smedia:hover {
transform: scale(1.1);
}
.intro-text p {
background: white;
padding: 10px;
border-radius: 10px;
margin: 5px 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.avatar img {
width: 250px;
height: 250px;
border-radius: 50%;
object-fit: cover;
border: 5px solid transparent;
background: linear-gradient(45deg, #cdab3b, #f78465) border-box;
}
section {
padding: 20px;
max-width: 800px;
margin: auto;
background: rgba(255, 255, 255, 0.95);
margin-top: 20px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
h2 {
color: #ff6f61;
}
ul li {
margin-bottom: 8px;
background: #ffe0dc;
padding: 6px 10px;
border-radius: 6px;
}
footer {
text-align: center;
padding: 15px;
background: #333;
color: white;
margin-top: 30px;
}
a {
color: #ff6f61;
}
section {
animation: fadeUp 0.6s ease-in-out;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}