forked from interstellar_development/freettrpg
Merge pull request 'Fixed background' (#10) from sageTheDm/FreeTTRPG:pages into pages
Reviewed-on: https://codeberg.org/Patrick_Pluto/FreeTTRPG/pulls/10
This commit is contained in:
commit
5e23ac1fae
3 changed files with 12 additions and 2 deletions
|
@ -5,6 +5,15 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
background: #f5f5f5 url("../assets/background.jpg") no-repeat fixed center;
|
||||||
|
background-size: cover;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3{
|
h3{
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
|
|
||||||
<section id="section4">
|
<section id="section4">
|
||||||
<h1>read through our license</h1>
|
<h1>read through our license</h1>
|
||||||
<p class="code-box">$ cat LICENSE</p>
|
<p class="code-box">$ less LICENSE</p>
|
||||||
<p>Move the bash console into the newly created repository</p>
|
<p>Move the bash console into the newly created repository</p>
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
|
|
|
@ -10,7 +10,8 @@
|
||||||
/* Body styles */
|
/* Body styles */
|
||||||
body {
|
body {
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
background: #f5f5f5 url("assets/background.jpg") no-repeat center fixed;
|
background: #f5f5f5 url("assets/background.jpg") no-repeat fixed center;
|
||||||
|
background-size: cover;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
Loading…
Reference in a new issue