43 lines
519 B
CSS
43 lines
519 B
CSS
body {
|
|
background-color: gray;
|
|
}
|
|
|
|
header {
|
|
background-color: lightgrey;
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
section {
|
|
margin: 50px;
|
|
padding: 30px;
|
|
background-color: lightgrey;
|
|
}
|
|
|
|
.me {
|
|
background-color: orange;
|
|
margin: 5px;
|
|
padding: 5px 40px;
|
|
}
|
|
|
|
.other {
|
|
background-color: green;
|
|
margin: 5px;
|
|
padding: 5px 40px;
|
|
text-align: right
|
|
}
|
|
|
|
p {
|
|
color: white;
|
|
}
|
|
|
|
footer {
|
|
text-align: right;
|
|
padding: 0px 30px;
|
|
}
|
|
|
|
img {
|
|
height: 100px;
|
|
margin: 20px;
|
|
}
|