davidovski/site/style.css

191 lines
2.4 KiB
CSS
Raw Normal View History

2021-08-26 03:15:22 +00:00
:root {
--fg: #f58F44;
--black: #707880;
--red: #cc6666;
--green: #b5bd68;
--yellow: #f0c674;
--blue: #5f819d;
--magenta: #b294bb;
--cyan: #b4d6d1;
--white: #c5c8c6;
2021-08-27 02:08:43 +00:00
--bg-light: #303030;
2021-08-26 03:15:22 +00:00
--bg: #191919;
--line: 2px;
}
@font-face {
font-family: mononoki;
src: url(mononoki.woff);
}
body {
2023-12-04 03:03:01 +00:00
background-color: #373b41;
2024-01-20 16:04:47 +00:00
background-image: url("/images/bg.gif");
2023-12-04 03:03:01 +00:00
background-repeat: repeat-x;
2021-10-30 23:31:46 +00:00
background-attachment: fixed;
2023-12-04 03:03:01 +00:00
background-position: center bottom;
background-size: 100%;
2021-11-02 10:30:49 +00:00
image-rendering: pixelated;
image-rendering: optimizeSpeed;
2021-09-29 22:18:33 +00:00
2021-09-01 01:45:04 +00:00
/*background-image: url("https://davidovski.xyz/images/bg.png");*/
2023-12-04 03:03:01 +00:00
color: #fefefe;
2021-08-26 03:15:22 +00:00
font-family: mononoki;
2021-08-27 02:08:43 +00:00
font-size: 16px;
padding: 0;
margin: 0;
2021-08-26 03:15:22 +00:00
}
2021-11-02 10:30:49 +00:00
img {
image-rendering: pixelated;
image-rendering: optimizeSpeed;
}
2021-08-26 03:15:22 +00:00
a {
2022-05-02 11:52:30 +00:00
color: #5f819d;
2021-08-26 03:15:22 +00:00
text-decoration: none;
}
2021-10-30 23:31:46 +00:00
a:hover {
2022-05-02 11:52:30 +00:00
color: #b4d6d1;
2021-10-30 23:31:46 +00:00
text-decoration: underline;
}
2021-08-27 02:08:43 +00:00
h1 {
2022-05-02 11:52:30 +00:00
color: #c5c8c6;
2021-08-27 02:08:43 +00:00
}
h2 {
2022-05-02 11:52:30 +00:00
color: #b4d6d1;
2021-08-27 02:08:43 +00:00
}
h3 {
2022-05-02 11:52:30 +00:00
color: #5f819d;
2021-08-27 02:08:43 +00:00
}
2023-12-04 03:32:14 +00:00
.small-window {
width: 100%;
max-width: 1080px;
height: 100%;
max-height: 607px;
}
.regular-window {
width: 70%;
max-width: 70%;
height: 100%;
max-height: 80%;
overflow: hidden;
}
2021-08-27 02:08:43 +00:00
2021-08-26 03:15:22 +00:00
.main {
2022-05-02 11:52:30 +00:00
background-color: #191919;
2023-12-04 03:32:14 +00:00
margin-left: auto;
margin-right: auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position: absolute;
2021-08-26 03:15:22 +00:00
padding: 2%;
height: 100%;
2023-12-04 03:03:01 +00:00
border-radius: 6px;
box-shadow: 0px 0px 50px black;
2021-08-26 03:15:22 +00:00
}
2024-01-18 14:53:04 +00:00
2023-12-04 03:32:14 +00:00
.content {
2023-12-12 22:50:44 +00:00
overflow: auto;
2023-12-04 03:32:14 +00:00
height: 80%;
2024-01-18 14:53:04 +00:00
padding: 2%;
2023-12-04 03:32:14 +00:00
}
2021-08-26 03:15:22 +00:00
.header {
text-align: center;
}
.links {
text-align: center justify;
text-justify: inter-word;
#white-space: nowrap;
}
hr {
width: 100%;
border: 0;
2023-12-04 03:03:01 +00:00
border-bottom: 2px solid #fefefe;
2021-08-26 03:15:22 +00:00
}
2022-05-23 21:33:00 +00:00
2021-08-26 03:15:22 +00:00
.title {
2021-08-27 02:08:43 +00:00
font-size: 45px;
2023-12-04 03:03:01 +00:00
color: #fefefe;
2021-08-26 03:15:22 +00:00
}
2022-05-23 21:33:00 +00:00
2021-08-26 03:15:22 +00:00
.small {
font-size: 9px;
padding: 0;
2022-05-02 11:52:30 +00:00
color: #707880;
2021-08-26 03:15:22 +00:00
}
a.red {
2022-05-02 11:52:30 +00:00
color: #cc6666;
2021-08-26 03:15:22 +00:00
}
a.green {
2022-05-02 11:52:30 +00:00
color: #b5bd68;
2021-08-26 03:15:22 +00:00
}
a.blue {
2022-05-02 11:52:30 +00:00
color: #5f819d;
2021-08-26 03:15:22 +00:00
}
2021-08-27 02:08:43 +00:00
code {
2022-05-02 11:52:30 +00:00
background-color: #303030;
2021-08-27 02:08:43 +00:00
font-size: 16px;
font-family: mononoki;
word-wrap: break-word;
width: 100%;
}
pre {
2022-05-02 11:52:30 +00:00
background-color: #303030;
2021-08-27 02:08:43 +00:00
white-space: pre-wrap;
padding: 5px;
}
.grid {
2022-05-23 21:40:34 +00:00
display: inline;
2021-08-27 02:08:43 +00:00
}
.about {
2022-05-23 21:42:01 +00:00
width: auto;
2021-08-27 02:08:43 +00:00
}
2024-03-21 11:18:31 +00:00
.left {
width: 45%;
float: left;
}
.right {
width: 45%;
float: right;
}
2021-08-27 02:08:43 +00:00
.image {
2022-05-23 21:40:34 +00:00
width: auto;
2022-05-23 21:39:10 +00:00
float: right;
2021-08-27 02:08:43 +00:00
}
2022-05-23 21:44:15 +00:00
ul {
list-style-type: none;
2022-05-23 21:47:18 +00:00
margin-left: 0;
padding-left: 0;
2022-05-23 21:44:15 +00:00
}
2021-08-27 02:08:43 +00:00
img {
width: 100%;
}