Skip to content

Commit 35d698e

Browse files
author
aayushjoglekar
committed
Issue #102 : CSS problems Resolved. Back-card designed.
1 parent 68820d1 commit 35d698e

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

css/projects-style.css

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
.projects .card-underline{
1818
margin:0;
1919
}
20-
.projects .card .front .project .project-name{
20+
.project-name{
2121
text-transform: uppercase;
2222
font-size:14.5px;
2323
text-align: center;
@@ -51,4 +51,21 @@
5151

5252
.projects .card .front .name{
5353
color:white;
54+
}
55+
56+
.about-project{
57+
font-size:15px;
58+
59+
}
60+
61+
.projects .card .back{
62+
padding:3px;
63+
}
64+
65+
.projects .card .back .card-underline{
66+
margin-bottom:5px;
67+
}
68+
69+
.projects .social i{
70+
color:white
5471
}

index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,10 @@ <h1>Projects</h1>
221221
</div>
222222
<div class="back">
223223
<div class="about">
224-
<h3>About project</h3>{{ project.about }}</div>
224+
<p class="project-name">ABOUT PROJECT</p>
225+
<hr class="card-underline">
226+
<p class="about-project">{{ project.about }}</p>
227+
</div>
225228
<div class="social">
226229

227230
<a v-bind:href="project.github">

js/projects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const app2=new Vue({
44
projects : []
55
},
66
created() {
7-
fetch('https://opencode18.github.io/OpenCode-Collaborative/projects.json')
7+
fetch('https://tlazypanda.github.io/OpenCode-Collaborative/projects.json')
88
.then(response => response.json() )
99
.then(json => {
1010
this.projects = json.projects

0 commit comments

Comments
 (0)