15 lines
194 B
CSS
15 lines
194 B
CSS
|
body {
|
||
|
background-color: #ebdbb2;
|
||
|
color:#282828;
|
||
|
}
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
section {
|
||
|
display: flex;
|
||
|
width: 400px;
|
||
|
height: 500px;
|
||
|
background-color: lightgray;
|
||
|
}
|
||
|
|