blog/themes/minth/assets/css/main.css

53 lines
906 B
CSS
Raw Normal View History

2024-07-29 12:54:31 +00:00
html {
min-height: 100%;
}
body {
2024-07-29 12:54:31 +00:00
overflow-x: hidden;
color: #222;
line-height: 1.5;
margin: 1rem;
2024-07-29 12:54:31 +00:00
font-family: monospace;
2024-08-13 12:21:51 +00:00
background: rgb(0,58,155);
/*background: linear-gradient(0deg, rgba(0,78,255,1) 0%, rgba(0,0,0,1) 100%);
*/
background-image: url('../hacker-manifesto-bg.jpg');
2024-09-28 17:48:34 +00:00
background-repeat: repeat;
2024-08-13 12:21:51 +00:00
/*background-size: contain;
background-attachment: fixed;*/
2024-07-29 12:54:31 +00:00
}
@media only screen and (min-width: 800px) {
.body {
font-size: 14px;
}
}
@media only screen and (max-width: 800px) {
.body {
font-size: 10px;
}
}
header {
2024-07-29 12:54:31 +00:00
border-bottom: 1px solid #3b3b3b;
margin-bottom: 1rem;
}
footer {
border-top: 1px solid #222;
margin-top: 1rem;
}
a {
2024-08-13 12:21:51 +00:00
color: #524f6e !important;
}
a:hover {
color: #6d6994 !important;
text-shadow: 0px 0px 10px #685aed;
2024-07-29 12:54:31 +00:00
}
hr {
color: white !important;
background-color: white !important;
}