Compare commits

...

5 Commits

Author SHA1 Message Date
davidovski bc29b58e81 removed old tags 2022-05-02 13:05:08 +01:00
davidovski 271906e893 added alignment attributes 2022-05-02 13:03:10 +01:00
davidovski 923893af77 added more color tags 2022-05-02 13:01:33 +01:00
davidovski cc4cce1221 added bgcolor property to body 2022-05-02 12:57:32 +01:00
davidovski fc28570e5d removed var() from style 2022-05-02 12:52:30 +01:00
3 changed files with 29 additions and 29 deletions

View File

@ -20,7 +20,7 @@
} }
body { body {
background-color: var(--bg-light); background-color: #303030;
background-image: url("/images/bg.gif"); background-image: url("/images/bg.gif");
background-repeat: repeat; background-repeat: repeat;
background-attachment: fixed; background-attachment: fixed;
@ -29,7 +29,7 @@ body {
/*background-image: url("https://davidovski.xyz/images/bg.png");*/ /*background-image: url("https://davidovski.xyz/images/bg.png");*/
color: var(--fg); color: #f58f44;
font-family: mononoki; font-family: mononoki;
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
@ -42,30 +42,30 @@ img {
} }
a { a {
color: var(--blue); color: #5f819d;
text-decoration: none; text-decoration: none;
} }
a:hover { a:hover {
color: var(--cyan); color: #b4d6d1;
text-decoration: underline; text-decoration: underline;
} }
h1 { h1 {
color: var(--white); color: #c5c8c6;
} }
h2 { h2 {
color: var(--cyan); color: #b4d6d1;
} }
h3 { h3 {
color: var(--blue); color: #5f819d;
} }
.main { .main {
background-color: var(--bg); background-color: #191919;
margin-top: 0; margin-top: 0;
margin-bottom: 0; margin-bottom: 0;
margin-left: auto; margin-left: auto;
@ -76,9 +76,9 @@ h3 {
padding: 2%; padding: 2%;
height: 100%; height: 100%;
border-left: var(--line) solid var(--fg); border-left: 2px solid #f58f44;
border-right: var(--line) solid var(--fg); border-right: 2px solid #f58f44;
border-bottom: var(--line) solid var(--fg); border-bottom: 2px solid #f58f44;
} }
.header { .header {
@ -94,32 +94,32 @@ h3 {
hr { hr {
width: 100%; width: 100%;
border: 0; border: 0;
border-bottom: var(--line) solid var(--fg); border-bottom: 2px solid #f58f44;
} }
.title { .title {
font-size: 45px; font-size: 45px;
color: var(--fg); color: #f58f44;
} }
.small { .small {
font-size: 9px; font-size: 9px;
padding: 0; padding: 0;
color: var(--black); color: #707880;
} }
a.red { a.red {
color: --var(red); color: #cc6666;
} }
a.green { a.green {
color: --var(green); color: #b5bd68;
} }
a.blue { a.blue {
color: --var(blue); color: #5f819d;
} }
code { code {
background-color: var(--bg-light); background-color: #303030;
font-size: 16px; font-size: 16px;
font-family: mononoki; font-family: mononoki;
word-wrap: break-word; word-wrap: break-word;
@ -127,10 +127,10 @@ code {
} }
pre { pre {
background-color: var(--bg-light); background-color: #303030;
white-space: pre-wrap; white-space: pre-wrap;
padding: 5px; padding: 5px;
border: var(--line) solid var(--fg); border: 2px solid #f58f44;
} }

View File

@ -5,7 +5,7 @@
<p>Hi, I'm david and this is my place on the net where I dump various files, write blogs and whatever I feel like.</p> <p>Hi, I'm david and this is my place on the net where I dump various files, write blogs and whatever I feel like.</p>
<p>Feel free to explore the above links, or scroll through below. This site is still under construction... permanently. So expect it to look better (or worse) in the future.</p> <p>Feel free to explore the above links, or scroll through below. This site is still under construction... permanently. So expect it to look better (or worse) in the future.</p>
<p>if you want to contact me, you can message me on matrix <code>@davidovski:matrix.org</code> or discord <code>iksvo#6239</code>. I'll be also happy to reply to any emails, linked at the top of the page</p> <p>if you want to contact me, you can message me on matrix <code>@iksvo:monero.social</code>. I'll be also happy to reply to any emails, linked at the top of the page</p>
</div> </div>
<div class="image"> <div class="image">
<img src="/images/remotecontrol.gif"> <img src="/images/remotecontrol.gif">

View File

@ -6,8 +6,8 @@
<link rel="stylesheet" href="/style.css"> <link rel="stylesheet" href="/style.css">
<title>davidovski.xyz</title> <title>davidovski.xyz</title>
</head> </head>
<body> <body bgcolor="#191919" text="#f58f44" link="#b4d6d1">
<div class="main"> <div valign="middle" class="main" bgcolor="#191919" text="#f58f44">
<div class="header"> <div class="header">
<a href="https://davidovski.xyz/"<h1 class="title">davidovski.xyz</h1></a> <a href="https://davidovski.xyz/"<h1 class="title">davidovski.xyz</h1></a>
<hr> <hr>
@ -20,17 +20,17 @@
| |
<a href="https://orangepeel.pw/">op</a> <a href="https://orangepeel.pw/">op</a>
|| ||
<a style="color: var(--red);" href="https://davidovski.xyz/m">m</a> <a color="#cc6666" style="color: var(--red);" href="https://davidovski.xyz/m">m</a>
| |
<a style="color: var(--red);" href="https://davidovski.xyz/f">f</a> <a color="#cc6666" style="color: var(--red);" href="https://davidovski.xyz/f">f</a>
| |
<a style="color: var(--red);" href="https://davidovski.xyz/s">s</a> <a color="#cc6666" style="color: var(--red);" href="https://davidovski.xyz/s">s</a>
|| ||
<a style="color: var(--green)" href="http://chat.davidovski.xyz/">chat</a> <a color="#b5bd68" style="color: var(--green)" href="http://chat.davidovski.xyz/">chat</a>
| |
<a style="color: var(--green)" href="mailto:david@davidovski.xyz">mail</a> <a color="#b5bd68" style="color: var(--green)" href="mailto:david@davidovski.xyz">mail</a>
| |
<a style="color: var(--green)" href="/rss.xml">rss</a> <a color="#b5bd68" style="color: var(--green)" href="/rss.xml">rss</a>
</div> </div>
</div> </div>