-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
216 lines (188 loc) · 4.02 KB
/
style.css
File metadata and controls
216 lines (188 loc) · 4.02 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
body {
background-color: #f0f4f8;
font-family: 'Segoe UI', Arial, sans-serif;
}
ul.menu {
list-style-type: none;
margin: 0;
padding: 0;
background-color: #2c3e50;
overflow: hidden;
display: flex;
}
ul.menu li {
flex: 1;
}
ul.menu li a {
display: block;
color: #ecf0f1;
text-align: center;
padding: 14px 20px;
text-decoration: none;
transition: background 0.3s;
}
ul.menu li a:hover {
background-color: #3498db;
}
.profile-card {
background-color: #ffffff;
border-radius: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
width: 60%;
text-align: center;
padding: 30px 10px;
margin-top: 70px;
margin-left: 20%;
}
.profile-card img {
width: 200px;
height: 200px;
border-radius: 50%;
border: 4px solid #3498db;
object-fit: cover;
float: left;
margin-bottom: 10%;
}
.profile-card h2 {
margin: 20px 0 10px;
font-size: 22px;
color: #2c3e50;
}
.profile-card p {
color: #34495e;
margin: 0 0 15px;
}
.profile-card .btn {
display: inline-block;
padding: 10px 20px;
margin: 10px 5px;
border-radius: 25px;
text-decoration: none;
font-size: 14px;
font-weight: bold;
transition: 0.3s;
}
.btn-primary {
background-color: #3498db;
color: #ffffff;
}
.btn-primary:hover {
background-color: #2980b9;
}
.btn-outline {
background-color: transparent;
color: #3498db;
border: 2px solid #3498db;
}
.btn-outline:hover {
background-color: #3498db;
color: #ffffff;
}
.div_1
{
width: 20%;margin-left: 40%;text-align: center;
}
.project
{
font-size: 20px;
}
.project p
{
border-radius: 4px;
}
.project p p
{
font-size: 15px;
}
.project-card {
display: flex;
justify-content: space-between;
background-color: #ecf0f1;
width: 100%;
margin-bottom: 2%;
padding: 20px;
box-sizing: border-box;
}
.project-card div {
width: 32%;
text-align: center;
border: 2px solid #3498db;
border-radius: 8px;
padding: 15px;
background-color: #ffffff;
box-sizing: border-box;
}
#contact form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem 2rem;
max-width: 100%;
}
#contact fieldset {
border: 1px solid #bdc3c7;
border-radius: 8px;
padding: 1rem;
background-color: #ffffff;
}
#contact label {
display: block;
margin-top: 0.5rem;
font-weight: 600;
color: #2c3e50;
}
#contact input,
#contact select,
#contact textarea {
width: 100%;
padding: 0.5rem;
margin-top: 0.3rem;
border: 1px solid #bdc3c7;
border-radius: 6px;
transition: border-color 0.3s, box-shadow 0.3s;
}
#contact input:focus,
#contact select:focus,
#contact textarea:focus {
outline: none;
border-color: #3498db;
box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
#contact input:not(:placeholder-shown),
#contact select:not(:placeholder-shown),
#contact textarea:not(:placeholder-shown) {
border-color: #2ecc71;
}
#contact input:not(:placeholder-shown),
#contact select:not(:placeholder-shown),
#contact textarea:not(:placeholder-shown) :hover{
border-color: #27ae60;
}
#contact button {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 6px;
cursor: pointer;
margin-right: 10px;
}
#contact button[type="submit"] {
background: #3498db;
color: #ffffff;
}
#contact button[type="submit"]:hover {
background: #2980b9;
}
#contact button[type="reset"] {
background: #e74c3c;
color: #ffffff;
}
#contact button[type="reset"]:hover {
background: #c0392b;
}
footer {
background: #222;
color: #fff;
padding: 5px 5px;
margin-top: 3%;
text-align: center;
}