16 lines
230 B
CSS
16 lines
230 B
CSS
|
*{
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
.page-header{
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
width: 100%;
|
||
|
padding: 28px 0;
|
||
|
background-color: #000;
|
||
|
}
|
||
|
|
||
|
.header-logo{
|
||
|
display: block;
|
||
|
}
|