Skip to content

Commit

Permalink
Random Quote Generator 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
AlangGY committed Sep 7, 2021
1 parent 568b8b0 commit 3f3d590
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions 3-Random_Quote_Generator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
<body>
<div class="app">
<div class="quote-container">
<p class="quote-text">Quote</p>
<h1>Quote</h1>
<p class="quote-text">...</p>
<p class="quote-author">Author</p>
<button>Generate Quote</button>
</div>
<button>Generate Quote</button>
</div>
<script src="index.js" defer></script>
</body>
Expand Down
5 changes: 4 additions & 1 deletion 3-Random_Quote_Generator/style.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
body{
margin: 0;
}
.app{
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
justify-content: space-around;
align-items: center;
font-family: 'Times New Roman', Times, serif;
background : linear-gradient(to right, #f7b24a, #4aa193);
Expand Down

0 comments on commit 3f3d590

Please sign in to comment.