24 lines
437 B
CSS
24 lines
437 B
CSS
body{
|
|
background-color: pink;
|
|
margin: 0;
|
|
}
|
|
|
|
.topo{
|
|
width: 100%;
|
|
height: 60px;
|
|
background-color: #111;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
background: linear-gradient(to right,#C0392B 47%,#7A4951 73%,#114455 87% );
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
padding-left: 20px;
|
|
|
|
}
|
|
#textotop{
|
|
font-size: 48px;
|
|
margin: 0;
|
|
}
|
|
|