Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f1ad9f7

Browse files
bangla font added
1 parent 9842e07 commit f1ad9f7

File tree

7 files changed

+2183
-12
lines changed

7 files changed

+2183
-12
lines changed

‎src/App.css

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,24 +56,36 @@ body {
5656
.content h4 {
5757
color: #606770;
5858
padding: 0 10px;
59-
font-size: 14px;
59+
font-size: 18px;
6060
margin-bottom: 5px;
6161
text-transform: uppercase;
6262
}
6363

64+
.content h4:before {
65+
content: "";
66+
position: relative;
67+
display: inline-block;
68+
top: -5px;
69+
margin-right: 15px;
70+
height: 3px;
71+
width: 10px;
72+
background-color: #606770;
73+
}
74+
6475
.card {
6576
order: 2;
6677
width: calc(100%/2 - 20px);
6778
position: relative;
6879
background: #fff;
69-
padding: 25px;
80+
padding: 20px25px;
7081
margin: 10px;
7182
border-left: solid 10px;
7283
-webkit-box-shadow: 0 5px 30px hsla(224,8%,64%,.25);
7384
box-shadow: 0 5px 30px hsla(224,8%,64%,.25);
7485
}
7586

7687
.card a {
88+
font-size: 20px;
7789
color: #333;
7890
text-decoration: none;
7991
font-weight: 900;
@@ -88,7 +100,7 @@ body {
88100
}
89101

90102
.single-content .title {
91-
font-size: 42px;
103+
font-size: 46px;
92104
margin: 30px 0;
93105
}
94106

@@ -104,14 +116,14 @@ body {
104116

105117
.section-divider,
106118
.single-content p {
107-
font-size: 21px;
119+
font-size: 24px;
108120
color: rgba(0,0,0,.84);
109121
line-height: 2;
110122
}
111123

112124
.single-content ul {
113125
margin: 25px 0;
114-
font-size: 21px;
126+
font-size: 24px;
115127
padding: 0 25px;
116128
}
117129

‎src/component/Main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ export default class Main extends Component {
2727

2828
return (
2929
<section className="content-area">
30-
{basics.length > 0 ? <Content title="JavaScript Basics" data={basics} color="#F0DB4F" topic="js-basic" /> : <div className="loading-bar"><BarLoader color={'#F0DB4F'} />{delayed ? delayMsg : ''}</div>}
31-
{advance.length > 0 ? <Content title="JavaScript Advance" data={advance} color="#F44336" topic="js-advance" /> : <div className="loading-bar"><BarLoader color={'#F44336'} />{delayed ? delayMsg : ''}</div>}
32-
{es6.length > 0 ? <Content title="JavaScript ES6" data={es6} color="#BDBDBD" topic="js-es6" /> : <div className="loading-bar"><BarLoader color={'#BDBDBD'} />{delayed ? delayMsg : ''}</div>}
33-
{/**dom.length > 0 ? <Content title="JavaScript DOM" data={dom} color="#FFC107" topic="js-dom" /> : <div className="loading-bar"><BarLoader color={'#FFC107'} />{delayed ? delayMsg : ''}</div>**/}
30+
{basics.length > 0 ? <Content title="জাভাস্ক্রিপ্ট ব্যাসিক" data={basics} color="#F0DB4F" topic="basic" /> : <div className="loading-bar"><BarLoader color={'#F0DB4F'} />{delayed ? delayMsg : ''}</div>}
31+
{advance.length > 0 ? <Content title="জাভাস্ক্রিপ্ট অ্যাডভান্স" data={advance} color="#F44336" topic="advance" /> : <div className="loading-bar"><BarLoader color={'#F44336'} />{delayed ? delayMsg : ''}</div>}
32+
{es6.length > 0 ? <Content title="জাভাস্ক্রিপ্ট ইএস৬" data={es6} color="#BDBDBD" topic="es6" /> : <div className="loading-bar"><BarLoader color={'#BDBDBD'} />{delayed ? delayMsg : ''}</div>}
33+
{/**dom.length > 0 ? <Content title="জাভাস্ক্রিপ্ট ডম" data={dom} color="#FFC107" topic="js-dom" /> : <div className="loading-bar"><BarLoader color={'#FFC107'} />{delayed ? delayMsg : ''}</div>**/}
3434
<p style={{textAlign: 'center', marginBottom: '40px', padding: '25px', textTransform: 'uppercase'}}>Posts on JavaScript DOM is Coming Soon, <a rel="noopener noreferrer" target="_blank" href="https://www.facebook.com/photo.php?fbid=1928931623852850&set=a.108061722606525&type=3&permPage=1">Help me</a> to make the list better</p>
35-
{daily.length > 0 ? <Content title="Daily JavaScript" data={daily} color="#4CAF50" topic="js-daily" /> : <div className="loading-bar"><BarLoader color={'#4CAF50'} />{delayed ? delayMsg : ''}</div>}
36-
{soft.length > 0 ? <Content title="JavaScript Soft Skills" data={soft} color="#000" topic="js-soft" /> : <div className="loading-bar"><BarLoader color={'#000'} />{delayed ? delayMsg : ''}</div>}
35+
{daily.length > 0 ? <Content title="নিত্যদিনের জাভাস্ক্রিপ্ট" data={daily} color="#4CAF50" topic="daily" /> : <div className="loading-bar"><BarLoader color={'#4CAF50'} />{delayed ? delayMsg : ''}</div>}
36+
{soft.length > 0 ? <Content title="জাভাস্ক্রিপ্ট সফট স্কিল" data={soft} color="#000" topic="soft" /> : <div className="loading-bar"><BarLoader color={'#000'} />{delayed ? delayMsg : ''}</div>}
3737
</section>
3838
)
3939
}

‎src/fonts/Kalpurush.eot

307 KB
Binary file not shown.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /