65 lines
1.1 KiB
CSS
65 lines
1.1 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
|
|
|
|
* {
|
|
font-family: "Ubuntu", sans-serif;
|
|
}
|
|
|
|
::selection {
|
|
background: #e67e80;
|
|
color: #232a2e;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: url(/static/tile.png);
|
|
color: #d3c6aa;
|
|
font-family: sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
a {
|
|
color: #d699b6;
|
|
}
|
|
|
|
.sourceCode code {
|
|
font-family: "Ubuntu Mono", monospace;
|
|
}
|
|
|
|
code {
|
|
background: #232a2e;
|
|
font-family: "Ubuntu Mono", monospace;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.sourceCode {
|
|
background: #232a2e;
|
|
overflow-y: scroll;
|
|
padding: 10px;
|
|
}
|
|
html,body{min-height: 100vh;}
|
|
#wrapper {
|
|
width: 50%;
|
|
min-height: 100vh;
|
|
background: #2d353b;
|
|
padding: 0px 30px 0px 30px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.date {
|
|
font-family: "Ubuntu Mono", monospace;
|
|
}
|
|
|
|
.back {
|
|
font-size: 20px;
|
|
}
|