add more Cozy Town flavour #2
This commit is contained in:
parent
28d8a54365
commit
92e04ffa40
2 changed files with 17 additions and 5 deletions
|
@ -15,7 +15,9 @@
|
|||
<h1>Cozy Chat</h1>
|
||||
</header>
|
||||
|
||||
<main class="mx_Main">
|
||||
{% block body %}{% endblock %}
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
18
style.css
18
style.css
|
@ -3,19 +3,24 @@ html {
|
|||
}
|
||||
|
||||
body {
|
||||
align-items: center;
|
||||
background: rgb(255, 255, 230);
|
||||
max-width: 680px;
|
||||
margin: auto;
|
||||
color: rgb(50, 50, 50);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-family: 'Lucida Console', 'Courier New', monospace;
|
||||
hyphens: auto;
|
||||
line-height: 1.8;
|
||||
margin: 0;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.mx_Header {
|
||||
background-blend-mode: initial;
|
||||
background-color: var(rgb(250, 220, 120));
|
||||
background-color: rgb(250, 220, 120);
|
||||
background-image: url(https://cozy.town/home-header-optimized.svg);
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
color: rgb(50, 50, 50);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 40vh;
|
||||
|
@ -23,6 +28,11 @@ body {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.mx_Main {
|
||||
max-width: 1200px;
|
||||
width: calc(100% - 4rem);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1120px) {
|
||||
body {
|
||||
font-size: 20px;
|
||||
|
|
Loading…
Reference in a new issue