31 lines
449 B
SCSS
31 lines
449 B
SCSS
@import '~purecss/build/pure.css';
|
|
|
|
body {
|
|
background-color: #ddd;
|
|
margin-top: 20px;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
img {
|
|
width: 60px;
|
|
margin-right: 30px;
|
|
}
|
|
}
|
|
|
|
button {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.logo {
|
|
background: url('images/logo.png');
|
|
width: 60px;
|
|
height: 60px;
|
|
background-size: cover;
|
|
}
|