davidovski/resources/style.css

154 lines
1.9 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 {
2022-05-02 11:52:30 +00:00
background-color: #303030;
2021-09-29 22:18:33 +00:00
background-image: url("/images/bg.gif");
background-repeat: repeat;
2021-10-30 23:31:46 +00:00
background-attachment: fixed;
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");*/
2022-05-02 11:52:30 +00:00
color: #f58f44;
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
}
2021-08-26 03:15:22 +00:00
.main {
2022-05-02 11:52:30 +00:00
background-color: #191919;
2021-08-26 03:15:22 +00:00
margin-top: 0;
margin-bottom: 0;
2021-08-27 02:08:43 +00:00
margin-left: auto;
margin-right: auto;
width: 70%;
2021-08-26 03:15:22 +00:00
padding: 2%;
height: 100%;
2022-05-02 11:52:30 +00:00
border-left: 2px solid #f58f44;
border-right: 2px solid #f58f44;
border-bottom: 2px solid #f58f44;
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;
2022-05-02 11:52:30 +00:00
border-bottom: 2px solid #f58f44;
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;
2022-05-02 11:52:30 +00:00
color: #f58f44;
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;
2022-05-02 11:52:30 +00:00
border: 2px solid #f58f44;
2021-08-27 02:08:43 +00:00
}
.grid {
2022-05-23 21:37:35 +00:00
display: grid;
2021-08-27 02:08:43 +00:00
}
.about {
2021-11-02 10:30:49 +00:00
width: 65%;
2021-08-27 02:08:43 +00:00
}
.image {
2022-05-23 21:38:41 +00:00
width: 35%;
2021-08-27 02:08:43 +00:00
}
img {
width: 100%;
}