Skip to content

Commit

Permalink
feat(solution): add new front-end solution (#64)
Browse files Browse the repository at this point in the history
Add solution for new front end challenge from
recent golrang contest. this challenge was about
pure css
  • Loading branch information
ARiYaNSEp0-0 authored Dec 9, 2024
1 parent 397b3a8 commit 5b27ca1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Solutions/265387/front-end/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Golrang Future Stars</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>دوره ستارگان آینده گلرنگ</h1>
<p>فرصتی برای برنامه‌نویسان جوان</p>
</body>
</html>
22 changes: 22 additions & 0 deletions Solutions/265387/front-end/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
body {
height: 600px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: midnightblue;
text-align: right;
direction: rtl;
}

h1 {
font-size: 57px;
color: goldenrod;
margin-bottom: 10px;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

p {
font-size: 1.2rem;
color: whitesmoke;
}

0 comments on commit 5b27ca1

Please sign in to comment.