-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9baed3
commit 93dcc52
Showing
3 changed files
with
24 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
<h1 class="title"> | ||
{{title}} | ||
</h1> | ||
<div class="container"> | ||
<h1 class="title"> | ||
{{title}} | ||
</h1> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
.title { | ||
color: black; | ||
margin:0; | ||
padding:50px 20px; | ||
.container { | ||
height: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
background: url(../../../assets/background.jpg) no-repeat center fixed; | ||
-webkit-background-size: cover; /* pour anciens Chrome et Safari */ | ||
background-size: cover; /* version standardisée */ | ||
|
||
.title { | ||
color: white; | ||
margin:0; | ||
padding:50px 20px; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
|
||
height: 100%; | ||
} |