Skip to content

Commit 431fd6a

Browse files
committed
organize css files
1 parent f28daff commit 431fd6a

File tree

6 files changed

+178
-158
lines changed

6 files changed

+178
-158
lines changed

css/footer.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
footer {
2+
/* for guide */
3+
/* border: solid 3px aqua; */
4+
width: 60%;
5+
margin: 0 auto;
6+
margin-top: 5em;
7+
margin-bottom: 5em;
8+
}
9+
10+
.contacts {
11+
display: flex;
12+
flex-direction: column;
13+
justify-content: center;
14+
15+
}
16+
17+
.contacts-item {
18+
text-align: center;
19+
}
20+
21+
.footer {
22+
display: grid;
23+
height: inherit;
24+
}
25+
26+
.footer-info {
27+
color: var(--default-font-color);
28+
font-family: var(--default-font-family);
29+
display: flex;
30+
flex-direction: column;
31+
justify-content: center;
32+
33+
}
34+
35+
.footer-info-item {
36+
margin: 0 auto;
37+
text-align: center;
38+
}

css/navbar.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
.navbar {
2+
padding: 0.5em;
3+
display: flex;
4+
flex-direction: row;
5+
justify-content: space-between;
6+
margin: 0;
7+
}
8+
9+
#home {
10+
padding: 1em;
11+
align-self: center;
12+
}
13+
14+
.nav-link {
15+
padding: 1em;
16+
color: white;
17+
text-decoration: none;
18+
/* background-image:none; */
19+
transition: all 0.5s ease-in-out;
20+
21+
}
22+
23+
.nav-link:hover {
24+
background-color: rgb(36, 28, 45);
25+
color: aqua !important
26+
}
27+
28+
.nav-link:visited {
29+
color: white;
30+
text-decoration: none;
31+
background-image: none;
32+
}
33+
34+
.navbar>li {
35+
align-self: center;
36+
}

css/presentation-section.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.presentation {
2+
color: rgb(148, 112, 220);
3+
font-family: var(--default-font-family);
4+
padding: 1em;
5+
}
6+
7+
#presentation-title {
8+
font-size: 2.6rem;
9+
color: aqua;
10+
animation: 1s show-presentation ease;
11+
}
12+
13+
#presentation-main-skill {
14+
font-size: 1.8rem;
15+
opacity: 0;
16+
animation-name: show-presentation-main-skill;
17+
animation-timing-function: ease;
18+
animation-duration: 1s;
19+
animation-delay: 0.2s;
20+
animation-fill-mode: forwards;
21+
}
22+
23+
#presentation-description {
24+
opacity: 0;
25+
animation-name: show-presentation-main-skill;
26+
animation-timing-function: ease;
27+
animation-duration: 1s;
28+
animation-delay: 0.4s;
29+
animation-fill-mode: forwards;
30+
}
31+

css/project-section.css

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
.card-projects {
2+
display: flex;
3+
flex-direction: column;
4+
}
5+
6+
.card-project {
7+
8+
padding: 0.5em;
9+
margin: 1em;
10+
width: 60%;
11+
display: flex;
12+
flex-direction: column;
13+
font-family: var(--default-font-family);
14+
}
15+
16+
.card-title {
17+
color: var(--default-font-color);
18+
padding: 0.5em;
19+
20+
21+
}
22+
23+
.card-description {
24+
padding: 1em;
25+
color: rgb(153, 249, 249);
26+
font-size: 0.6em;
27+
background-color: rgb(25, 18, 33);
28+
}
29+
30+
.card-links {
31+
padding: 0.5em;
32+
display: flex;
33+
}
34+
35+
#open-ecommerce {
36+
border-right: groove 0.2rem aqua;
37+
border-top: groove 0.2rem aqua;
38+
border-bottom: groove 0.2rem aqua;
39+
align-self: flex-end;
40+
}
41+
42+
#angular-portfolio {
43+
border-left: groove 0.2rem aqua;
44+
border-top: groove 0.2rem aqua;
45+
border-bottom: groove 0.2rem aqua;
46+
align-self: flex-start;
47+
48+
}
49+
50+
#angular-portfolio .card-links {
51+
justify-content: end;
52+
}

0 commit comments

Comments
 (0)