Skip to content

Commit

Permalink
Merge pull request #21 from jitinnair1/develop
Browse files Browse the repository at this point in the history
merge new changes
  • Loading branch information
jitinnair1 authored Oct 5, 2022
2 parents fdaa156 + 1b6fe27 commit dc68306
Show file tree
Hide file tree
Showing 6 changed files with 365 additions and 124 deletions.
24 changes: 15 additions & 9 deletions _projects/longerProjectTitle.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,21 @@ define foobar() {
~~~

(which makes copying & pasting easier). You can optionally mark the
delimited block for Pandoc to syntax highlight it by specifying the languagae after the start of a block (e.g. `~~~python`) which would look like :

~~~python
import time
# Quick, count to ten!
for i in range(10):
# (but not *too* quick)
time.sleep(0.5)
print(i)
delimited block for Pandoc to syntax highlight it by specifying the languagae after the start of a block (e.g. `~~~cpp`) which would look like :

~~~cpp
#include <iostream>
using namespace std;

int main()
{
cout << "Size of char: " << sizeof(char) << " byte" << endl;
cout << "Size of int: " << sizeof(int) << " bytes" << endl;
cout << "Size of float: " << sizeof(float) << " bytes" << endl;
cout << "Size of double: " << sizeof(double) << " bytes" << endl;

return 0;
}
~~~

### An H3 header ###
Expand Down
87 changes: 0 additions & 87 deletions assets/css/_sass/monokai.scss

This file was deleted.

11 changes: 2 additions & 9 deletions assets/css/_sass/projects.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,12 @@
.projectTile a span {
display: flex;
justify-content: center;
color: $text-color ;
@media (prefers-color-scheme: dark) {
color: $text-color-dark;
}
}

.projectTile a span h2 {
font-size: 1.5rem;
padding: 1rem;
color: $projectbox-text;
}

.projectTile:hover a span h2 {
Expand All @@ -59,11 +56,7 @@
font-size: 1.2rem;
display: flex;
padding: 1rem;
color: $text-color;

@media (prefers-color-scheme: dark) {
color: $text-color-dark;
}
color: $projectbox-text;
}

@include media-query($on-phone) {
Expand Down
Loading

0 comments on commit dc68306

Please sign in to comment.