Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "alarm clock is done"
This reverts commit 239f385.
  • Loading branch information
HadiVahidi20 committed Dec 13, 2025
commit 51ab1125bde73cd8b3f98394248a87583993c59b
5 changes: 2 additions & 3 deletions Sprint-3/quote-generator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Title here</title>
<script defer src="quotes.js"></script>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<h1 >hello there</h1>
<p id="quote" class="quote"></p>
<h1>hello there</h1>
<p id="quote"></p>
<p id="author"></p>
<button type="button" id="new-quote">New quote</button>
</body>
Expand Down
58 changes: 1 addition & 57 deletions Sprint-3/quote-generator/style.css
Original file line number Diff line number Diff line change
@@ -1,57 +1 @@
body {
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
background: #eea73b; /* رنگ نارنجی مثل عکس */
display: flex;
justify-content: center;
align-items: center;
font-family: "Georgia", serif;
}

.quote-box {
background: #ffffff;
width: 75%;
max-width: 1200px;
padding: 60px 80px;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
border-radius: 4px;
text-align: left;
}

.quote-text {
font-size: 2.4rem;
line-height: 1.4;
color: #d6861e;
display: flex;
align-items: flex-start;
gap: 15px;
}

.quote-text i {
font-size: 3.5rem;
color: #d6861e;
}

.author {
text-align: right;
margin-top: 20px;
font-size: 1.4rem;
color: #d6861e;
}

button {
margin-top: 25px;
padding: 12px 24px;
font-size: 1rem;
border: none;
background: #d6861e;
color: #fff;
cursor: pointer;
border-radius: 3px;
}

button:hover {
opacity: 0.9;
}
/** Write your CSS in here **/