Skip to content

Commit

Permalink
Merge pull request Gyanthakur#87 from AryanShriv/ui#69
Browse files Browse the repository at this point in the history
Changed theme
  • Loading branch information
Gyanthakur authored Oct 25, 2023
2 parents 2c78e6d + 253c77e commit c2329ca
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
31 changes: 19 additions & 12 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
:root {
--color-green: #68ebb8;
--color-white: #eee;
--color-body-bg: #011627;
--color-body-bg: #121212;
--color-profile-card-bg: #2f4054;
--color-profile-border: var(--color-green);
--color-profile-border: #e35205;
}

::-webkit-scrollbar {
Expand Down Expand Up @@ -59,7 +59,7 @@ body {
--backdrop-bg-color: var(--color-profile-card-bg);

position: relative;
border: 0.2em solid var(--color-profile-card-bg);
border: 0.2em solid var(--color-profile-border);
border-radius: 10px;
padding: 40px;
margin: 20px;
Expand All @@ -70,7 +70,7 @@ body {
overflow: hidden;
}

.profile > * {
.profile>* {
position: relative;
z-index: 10;
}
Expand All @@ -83,9 +83,9 @@ body {
left: 0;
right: 0;
bottom: 75%;
background-image: linear-gradient(80deg, #00dbde 0%, #fc00ff 100%);
background-image: linear-gradient(to right, #e35205, #ff6462, #ff87a5, #ffaed7, #f5d4f5, #f8dbf8, #fce1fc, #ffe8ff, #ffd2ee, #ffc0b9, #ffbf6e, #ffd200);
transform: scaleX(2);
animation: breatheX 4s ease-in-out infinite alternate-reverse;
animation: breatheX 1s ease-in-out infinite alternate-reverse;
}

.profile:hover {
Expand Down Expand Up @@ -116,8 +116,8 @@ body {
}

.skill {
background-color: #007277;
padding: 5px 10px;
background-color: var(--color-profile-border);
padding: 7px;
letter-spacing: 0.1em;
border-radius: 5px;
margin: 0 5px 10px 0;
Expand Down Expand Up @@ -168,7 +168,7 @@ body {
}

.social a {
color: #5c6770;
color: #ffffff;
margin: 0 10px;
font-size: 24px;
text-decoration: none;
Expand Down Expand Up @@ -202,7 +202,9 @@ button {
}

.add {
background-color: #21263d;
background-color: white;
color: var(--color-body-bg);
font-weight: 600;
margin: 5px;
}

Expand Down Expand Up @@ -252,6 +254,8 @@ header {
text-align: center;
font-size: 36px;
font-family: "PT Serif", serif;
color: var(--color-profile-border);
margin-top: 15px;
}

.dark-btn {
Expand All @@ -260,14 +264,16 @@ header {
top: 10px;
padding: 5px 10px;
cursor: pointer;
background-color: #011627;
background-color: var(--backdrop-bg-color);
font-size: 30px;
transition: all 0.3s;
}

.dark-btn img {
width: 50px;
height: 70px;
}

.dark-btn #icon:hover {
color: #00dbde;
}
Expand All @@ -285,11 +291,12 @@ header {
top: 6px;
right: 12px;
}

.text-color {
color: #000;
}

footer {
padding: 20px;
margin-bottom: 5px;
}
}

0 comments on commit c2329ca

Please sign in to comment.