52 lines
807 B
CSS
52 lines
807 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
header {
|
|
background-color: white;
|
|
color: rgb(6, 83, 60);
|
|
padding: 20px;
|
|
}
|
|
|
|
.profile img {
|
|
width: 150px;
|
|
border-radius: 50%;
|
|
margin: 20px;
|
|
}
|
|
|
|
.links a {
|
|
display: inline-block;
|
|
margin: 10px;
|
|
padding: 10px 20px;
|
|
background-color: #0077b5;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.links a:hover {
|
|
background-color: #5a4c42;
|
|
}
|
|
|
|
.contact form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 300px;
|
|
margin: auto;
|
|
}
|
|
|
|
.contact input,
|
|
.contact textarea {
|
|
margin: 10px 0;
|
|
padding: 10px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px;
|
|
background-color: rgb(46, 110, 50);
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
} |