website/style.css

84 lines
1.1 KiB
CSS
Raw Normal View History

2021-08-19 17:11:29 +00:00
body {
2022-01-08 12:15:59 +00:00
background: #1b1b1b;
color: #a7d129;
/* font-family: 'Inconsolata', monospace; */
letter-spacing: 1px;
line-height: 1em;
font-family: 'Share Tech Mono', monospace;
font-weight: 300;
2021-08-19 17:11:29 +00:00
}
2022-01-08 12:15:59 +00:00
#content {
2021-08-19 17:11:29 +00:00
padding:5px;
2022-01-08 12:15:59 +00:00
width:100%;
background-color: #1c1d1c;
max-width:1024px;
margin: 24px auto;
2021-08-19 17:11:29 +00:00
}
2022-01-08 12:15:59 +00:00
#header {
width: 100%;
background-color: #191919;
border-bottom: solid 1px black;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
}
.chunk {
background-color: #181728;
color: aqua;
}
2021-08-19 17:11:29 +00:00
hr{
2022-01-08 12:15:59 +00:00
color: #123321;
}
/* Textual CSS: */
h3 {
margin: 2px;
padding: 2px;
}
h4 {
margin: 1px;
padding: 1px;
}
em {
color: #CFDF47;
font-weight: lighter;
2021-08-19 17:11:29 +00:00
}
ul{
list-style: none;
2022-01-08 12:15:59 +00:00
margin-top: 0px;
margin-bottom: 4px;
margin-left: 2px;
2021-08-19 17:11:29 +00:00
}
2022-01-08 12:15:59 +00:00
2021-08-19 17:11:29 +00:00
li{
2022-01-08 12:15:59 +00:00
color:#81b214;
font-style: italic;
2021-08-19 17:11:29 +00:00
}
2022-01-08 12:15:59 +00:00
2021-08-19 17:11:29 +00:00
a{
2022-01-08 12:15:59 +00:00
text-decoration: none;
color: #9ede73;
}
a:hover,active {
color: #9ede73;
font-weight: bold;
2021-08-19 17:11:29 +00:00
}
2022-01-08 12:15:59 +00:00
/* Block Stuff CSS: */
2021-12-25 17:51:46 +00:00
img{
display: block;
margin-left: auto;
margin-right: auto;
2022-01-08 12:15:59 +00:00
padding: 4px;
2021-12-25 17:51:46 +00:00
}
2022-01-08 12:15:59 +00:00
p {
padding-bottom: 1px;
padding-top: 1px;
margin-top: 0px;
margin-bottom: 0px;
}