mirror of
https://github.com/harivansh-afk/React-Portfolio.git
synced 2026-04-17 15:04:54 +00:00
initial commit
This commit is contained in:
commit
fb5b992b17
35 changed files with 11573 additions and 0 deletions
100
src/pages/about/style.css
Normal file
100
src/pages/about/style.css
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
.sec_sp {
|
||||
margin-bottom: calc(3rem + 5.128vw)
|
||||
}
|
||||
|
||||
.table td,
|
||||
.table th {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.t_border {
|
||||
border-color: var(--text-color) !important;
|
||||
}
|
||||
|
||||
.progress-title {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin: 15px 0 20px;
|
||||
font-family: 'Raleway';
|
||||
}
|
||||
|
||||
.progress {
|
||||
height: 5px;
|
||||
background: var(--secondary);
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
margin-bottom: 30px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.progress .progress-bar {
|
||||
position: relative;
|
||||
background: var(--text-color);
|
||||
animation: animate-positive 2s;
|
||||
overflow: visible;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.progress .progress-value {
|
||||
position: absolute;
|
||||
top: -30px;
|
||||
right: 8px;
|
||||
font-size: 17px;
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
@-webkit-keyframes animate-positive {
|
||||
0% {
|
||||
width: 0%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate-positive {
|
||||
0% {
|
||||
width: 0%;
|
||||
}
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 45px;
|
||||
}
|
||||
|
||||
.service__title {
|
||||
padding: 8px 0;
|
||||
border-bottom: solid 2px var(--secondary-color);
|
||||
}
|
||||
|
||||
.service-section .service-category-title {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
|
||||
/*! CSS Used keyframes */
|
||||
|
||||
@-webkit-keyframes fadeInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translate3d(0, 100%, 0);
|
||||
transform: translate3d(0, 100%, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translate3d(0, 100%, 0);
|
||||
transform: translate3d(0, 100%, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue