removed light mode
This commit is contained in:
parent
efdbfe0576
commit
7c801a14bb
3 changed files with 54 additions and 31 deletions
|
@ -6,11 +6,11 @@ title: home
|
||||||
src="/images/me.jpg"
|
src="/images/me.jpg"
|
||||||
alt="My face">
|
alt="My face">
|
||||||
|
|
||||||
## vasilis valatsos (βασίλης βαλατσός)
|
## Vasilis Valatsos (βασίλης βαλατσός)
|
||||||
|
|
||||||
### machine learning | reinforcement learning | natural languages
|
### machine learning | reinforcement learning | natural languages
|
||||||
|
|
||||||
I am interested in the world in all of it's offerings; when I am not exploring man made constructs, like logic, physics, and most recently ai, I like to think about the ways we occupy space.
|
I am interested in the world and all of it's offerings; when I am not exploring man made concepts, I like to think about the ways we occupy space.
|
||||||
|
|
||||||
m.sc. in mathematics (statistics and data science),<br/>
|
m.sc. in mathematics (statistics and data science),<br/>
|
||||||
university of turin,<br/>
|
university of turin,<br/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Dark mode */
|
/* Dark mode */
|
||||||
@media (prefers-color-scheme: dark) {
|
/* @media (prefers-color-scheme: dark) { */
|
||||||
body {
|
body {
|
||||||
background-color: #2d2a2e;
|
background-color: #2d2a2e;
|
||||||
color: #f7f6f3;
|
color: #f7f6f3;
|
||||||
|
@ -16,7 +16,6 @@
|
||||||
header {
|
header {
|
||||||
background: #2d2a2e;
|
background: #2d2a2e;
|
||||||
border-bottom: 2px dotted #EBC3DB;
|
border-bottom: 2px dotted #EBC3DB;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.article-meta, .menu a {
|
.article-meta, .menu a {
|
||||||
|
@ -33,38 +32,44 @@
|
||||||
th, td { padding: 5px; }
|
th, td { padding: 5px; }
|
||||||
tr:nth-child(even) { background: #666 }
|
tr:nth-child(even) { background: #666 }
|
||||||
|
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
|
|
||||||
/* Light mode */
|
/* Light mode */
|
||||||
@media (prefers-color-scheme: light) {
|
/* @media (prefers-color-scheme: light) { */
|
||||||
blockquote {
|
/* body { */
|
||||||
background: #f7f6f3;
|
/* background-color: #f7f6f3; */
|
||||||
}
|
/* color: #2d2a2e; */
|
||||||
|
/* } */
|
||||||
|
|
||||||
a {
|
/* blockquote { */
|
||||||
color: #ac9c6d;
|
/* background: #f7f6f3; */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
header {
|
/* a { */
|
||||||
background: #f7f6f3;
|
/* color: #ac9c6d; */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
.article-meta, .menu a {
|
/* header { */
|
||||||
background: #E8DBC5;
|
/* background: #f7f6f3; */
|
||||||
color: #000;
|
/* border-bottom: 2px dotted #3d3a3e */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
table {
|
/* .article-meta, .menu a { */
|
||||||
margin: auto;
|
/* background: #E8DBC5; */
|
||||||
border-top: 1px solid #666;
|
/* color: #2d2a2e; */
|
||||||
border-bottom: 1px solid #666;
|
/* } */
|
||||||
}
|
|
||||||
table thead th { border-bottom: 1px solid #ddd; }
|
|
||||||
th, td { padding: 5px; }
|
|
||||||
tr:nth-child(even) { background: #eee }
|
|
||||||
|
|
||||||
}
|
/* table { */
|
||||||
|
/* margin: auto; */
|
||||||
|
/* border-top: 1px solid #666; */
|
||||||
|
/* border-bottom: 1px solid #666; */
|
||||||
|
/* } */
|
||||||
|
/* table thead th { border-bottom: 1px solid #ddd; } */
|
||||||
|
/* th, td { padding: 5px; } */
|
||||||
|
/* tr:nth-child(even) { background: #eee } */
|
||||||
|
|
||||||
|
/* } */
|
||||||
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
@ -73,6 +78,9 @@ body {
|
||||||
padding: .2em;
|
padding: .2em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-size: 19px;
|
font-size: 19px;
|
||||||
|
|
||||||
|
background-color: #2d2a2e;
|
||||||
|
color: #f7f6f3;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
|
|
@ -1,5 +1,20 @@
|
||||||
footer { font-size: 90%; }
|
footer { font-size: 90%; }
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #2d2a2e;
|
||||||
|
color: #f7f6f3;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #ac9c6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
background: #2d2a2e;
|
||||||
|
border-bottom: 2px dotted #f7f6f3;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue