From 9059059d1fc8b479ee674a06a672a4499a2505b2 Mon Sep 17 00:00:00 2001 From: Arghya Dutta Date: Mon, 15 Jul 2024 18:45:13 +0530 Subject: [PATCH] Last updated on 2024-07-15 18:45:13 --- .gitignore | 3 +-- index.html | 16 +++++----------- papers.html | 4 +--- style.css | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 40 insertions(+), 16 deletions(-) create mode 100644 style.css diff --git a/.gitignore b/.gitignore index 750c7e3..6a3e68d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -**/.DS_Store -local/ \ No newline at end of file +**/.DS_Store \ No newline at end of file diff --git a/index.html b/index.html index 7e3db35..741ba22 100644 --- a/index.html +++ b/index.html @@ -4,18 +4,12 @@ Arghya Dutta - - - - + + + + - + diff --git a/papers.html b/papers.html index b51ac3a..179ab61 100644 --- a/papers.html +++ b/papers.html @@ -10,9 +10,7 @@ - + diff --git a/style.css b/style.css new file mode 100644 index 0000000..cba1a54 --- /dev/null +++ b/style.css @@ -0,0 +1,33 @@ +html { + width: 90%; + max-width: 600px; + margin-left: auto; + margin-right: auto; + font-size: 18px; + font-family: sans-serif; + line-height: 1.3; + color: black; + background: white; +} + +a:link, :visited { + color: #3E58F6; + background-color: transparent; + text-decoration: none; + outline: none; + } + + +*::selection { + background: rgba(248, 228, 54, 1); + color: black; +} + + +/* img { + float: right; + width: auto; + max-height: 200px; + padding-left: 20px; + padding-bottom: 20px; +} */ \ No newline at end of file