Skip to content

Commit ff310f3

Browse files
committed
add card-project
1 parent 144b844 commit ff310f3

File tree

2 files changed

+60
-11
lines changed

2 files changed

+60
-11
lines changed

index.html

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,26 @@ <h2 id="presentation-main-skill">I'm an <br class='br-show'>full-stack engineer<
5757
</section>
5858
<section>
5959
<article id="work">
60-
<h2 class="subtitle reveal">These are my github repositories:</h2>
61-
<div class="card-project">
62-
60+
<h2 class="subtitle reveal">These are my github repositories</h2>
61+
<div id="open-ecommerce" class="card-project reveal">
62+
<div class="card-title">
63+
OpenEcommerce
64+
</div>
65+
<br>
66+
<div class="card-description">
67+
OpenEcommerce is an ecommerce builded with .net. Using a hexagonal architecture, cqrs pattern and more interesting patterns.
68+
</div>
69+
</div>
70+
<div id="angular-portfolio" class="card-project reveal">
71+
<div class="card-title">
72+
Angular Portfolio
73+
</div>
74+
<br>
75+
<div class="card-description">
76+
It is a personal portfolio builded with angular using really cool animation (Angular animations).
77+
</div>
6378
</div>
64-
<ul>
79+
<!-- <ul>
6580
<li class="reveal">
6681
<p><a class="work-link" href="https://github.com/CarlosJorgeR/openEcommerce" target="_blank"
6782
rel="noopener noreferrer">
@@ -72,7 +87,7 @@ <h2 class="subtitle reveal">These are my github repositories:</h2>
7287
rel="noopener noreferrer">
7388
My portfolio</a> is a personal portfolio builded with angular.</p>
7489
</li>
75-
</ul>
90+
</ul> -->
7691
</article>
7792
</section>
7893
<footer>
@@ -92,12 +107,13 @@ <h1 class="subtitle contacts-item">Contact</h1>
92107
<p class="footer-item">
93108
© 2022 Carlos Jorge
94109
</br>
95-
<a class="work-link" href="https://github.com/CarlosJorgeR/carlosjorger.github.io">Published</a> in
110+
<a class="work-link" href="https://github.com/CarlosJorgeR/carlosjorger.github.io">Published</a> in
96111
<a class="work-link" href="https://pages.github.com/">Github Page</a>
97112
</p>
98113

99114
</div>
100115
</article>
101116
</footer>
102117
</body>
118+
103119
</html>

styles.css

Lines changed: 38 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ nav {
114114
text-align: center;
115115
}
116116

117-
/* Classes */
118117
.presentation {
119118
color: rgb(148, 112, 220);
120119
font-family: var(--default-font-family);
@@ -140,8 +139,36 @@ nav {
140139
text-align: center;
141140
}
142141

142+
.card-project{
143143

144+
padding: 0.5em;
145+
margin: 1em;
146+
width: 60%;
147+
display: flex;
148+
flex-direction: column;
149+
font-family: var(--default-font-family);
150+
}
151+
.card-title{
152+
color: var(--default-font-color);
153+
154+
}
155+
.card-description{
156+
padding: 1em;
157+
color: rgb(153, 249, 249);
158+
font-size: 0.6em;
159+
background-color: rgb(25, 18, 33);
160+
}
161+
#open-ecommerce{
162+
border-left: groove 0.2rem aqua;
163+
border-top: groove 0.2rem aqua;
164+
margin-left: 5em;
165+
}
166+
#angular-portfolio{
167+
border-right: groove 0.2rem aqua;
168+
border-top: groove 0.2rem aqua;
169+
margin-right: 5em;
144170

171+
}
145172
/* Ids */
146173
#presentation-title {
147174
font-size: 2.6rem;
@@ -274,7 +301,9 @@ nav {
274301

275302

276303
}
277-
304+
.card-project{
305+
width: 65%;
306+
}
278307
section,
279308
footer {
280309
width: 75%;
@@ -290,22 +319,26 @@ nav {
290319
font-size: 17px;
291320

292321
}
293-
322+
.card-project{
323+
width: 70%;
324+
}
294325
p {
295326
max-width: 450px;
296327
}
297328

298329
section,
299330
footer {
300-
width: 70%;
331+
width: 75%;
301332
}
302333
}
303334

304335
@media (max-width: 665px) {
305336
:root {
306337
font-size: 13px;
307338
}
308-
339+
.card-project{
340+
width: 80%;
341+
}
309342
p {
310343
max-width: 330px;
311344
}

0 commit comments

Comments
 (0)