Skip to content

Commit 5b27ca1

Browse files
authored
feat(solution): add new front-end solution (#64)
Add solution for new front end challenge from recent golrang contest. this challenge was about pure css
1 parent 397b3a8 commit 5b27ca1

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

Solutions/265387/front-end/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="fa">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Golrang Future Stars</title>
7+
<link rel="stylesheet" href="styles.css" />
8+
</head>
9+
<body>
10+
<h1>دوره ستارگان آینده گلرنگ</h1>
11+
<p>فرصتی برای برنامه‌نویسان جوان</p>
12+
</body>
13+
</html>

Solutions/265387/front-end/styles.css

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
body {
2+
height: 600px;
3+
display: flex;
4+
flex-direction: column;
5+
align-items: center;
6+
justify-content: center;
7+
background-color: midnightblue;
8+
text-align: right;
9+
direction: rtl;
10+
}
11+
12+
h1 {
13+
font-size: 57px;
14+
color: goldenrod;
15+
margin-bottom: 10px;
16+
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
17+
}
18+
19+
p {
20+
font-size: 1.2rem;
21+
color: whitesmoke;
22+
}

0 commit comments

Comments
 (0)