Skip to content

Commit

Permalink
style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sujaykundu777 committed Feb 12, 2020
1 parent 5d218fa commit 7608988
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
8 changes: 3 additions & 5 deletions _includes/coding_activity.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<!-- Wakatime ( Replace with your own wakatime embed config at https://wakatime.com )-->

<!-- Pie Chart -->
<figure>
<embed src="https://wakatime.com/share/@{{site.wakatime_username }}/f540df00-f2d1-46e2-a360-da7e13ed8a66.svg"></embed>
</figure>
<!-- Languages -->
<figure><embed src="https://wakatime.com/share/@sujaykundu777/e4c2a44e-390d-41f3-a4c8-b23b05fbec30.svg"></embed></figure>

<!-- Hours Coded -->
<figure>
<embed src="https://wakatime.com/share/@{{site.wakatime_username }}/1550a9f1-d41a-4745-92a0-181a6fbb2456.svg"></embed>
<embed src="https://wakatime.com/share/@sujaykundu777/5fcfa63e-9357-44d1-9a49-5244504a1f13.svg"></embed>
</figure>
2 changes: 1 addition & 1 deletion _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1 class="card-title">Projects</h1>
<h4 class="experience-title"> {{ project.project_title }}</h4>
<h6 class="experience-info"> {{ project.project_info}}</h6>
<p class="experience-desc"> {{ project.project_description }} </p>
<p><a href="{{exp.company_url}}">{{ project.project_url}}</a></p>
<p><a class="project-link" href="{{exp.company_url}}">{{ project.project_url}}</a></p>
</div>
</div>
{% endif %}
Expand Down
17 changes: 9 additions & 8 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,16 @@ $nav-typeface: "Gill sans";
$mono-typeface: Menlo, Monaco, monospace;
$text-width: 650px;



html[data-theme="dark"] {
--bold-color: rgb(240, 240, 240);
--box-background-color: hsl(0, 0%, 20%);
--highlight-color: hsl(0, 0%, 60%);
--light-border-color: hsl(0, 0%, 30%);
--light-text-color: rgb(199, 199, 204);
--link-color: rgb(100, 210, 255);
--link-color: #f69801;
--link-color-visited: hsl(250, 100%, 60%);
--main-background-color: rgb(28, 28, 30);
--main-text-color: rgb(229, 229, 234);
--main-text-color: rgb(139, 139, 139);
--medium-text-color: hsl(0, 0%, 70%);
--underline-color: hsl(0, 0%, 50%);
--social-link-color: #ffffff;
Expand Down Expand Up @@ -58,10 +56,10 @@ html[data-theme="light"] {
--highlight-color: hsl(0, 0%, 60%);
--light-border-color: hsl(0, 0%, 30%);
--light-text-color: rgb(199, 199, 204);
--link-color: rgb(100, 210, 255);
--link-color: #f69801;
--link-color-visited: hsl(250, 100%, 60%);
--main-background-color: rgb(28, 28, 30);
--main-text-color: rgb(229, 229, 234);
--main-text-color: rgb(139, 139, 139);
--medium-text-color: hsl(0, 0%, 70%);
--underline-color: hsl(0, 0%, 50%);
--social-link-color: #ffffff;
Expand Down Expand Up @@ -109,7 +107,7 @@ html[data-theme="light"] {
body {
background-color: var(--main-background-color) !important;
color: var(--main-text-color) !important;
font-family: $body-typeface;
font-family: 'Quicksand', sans-serif !important;
font-feature-settings: "kern"on;
font-size: 1.4rem;
font-variant-numeric: oldstyle-nums;
Expand All @@ -121,7 +119,7 @@ body {
}

h1, h2, h3, h4, h5, h6 {
color: var(--main-text-color) !important;
color: var(--bold-color) !important;
line-height: 1.1;
}

Expand Down Expand Up @@ -192,6 +190,9 @@ header {
#project-card{
margin-top:30px;
}
.project-link{
color: var(--link-color);
}
}


Expand Down

0 comments on commit 7608988

Please sign in to comment.