grannysmith-technical/static/index.css

75 lines
1.2 KiB
CSS
Raw Permalink Normal View History

2023-08-09 17:27:08 +00:00
body {
background-color: #101012;
color: white;
font-family: sans-serif;
2023-08-09 17:27:08 +00:00
margin-top: 0;
}
nav {
display: flex;
border-bottom: 1px solid #1A1A1A;
box-shadow: 0px 5px 15px #121212;
}
article {
padding: 1em;
}
.chroma {
padding: 1em;
2023-08-09 21:36:20 +00:00
font-size: inherit;
/* background-color: #20202a; */
2023-08-09 21:36:20 +00:00
}
2023-08-09 17:27:08 +00:00
nav a {
width: fit-content;
padding: 0.2em;
margin: 0em 1em;
border-radius: 0.1em;
transition: box-shadow 200ms cubic-bezier(0.19, 1, 0.22, 1), background-color 200ms cubic-bezier(0.19, 1, 0.22, 1);
}
nav a:hover {
box-shadow: 0px 0px 15px black;
background-color: #40404a;
}
a {
color: cyan;
text-decoration: inherit;
}
article {
max-width: 100%;
}
img {
width: 90%;
}
blockquote {
border-left: 2px solid gray;
padding-left: 1em;
}
.content_notice > * {
padding: 1em;
border: 1px solid gray;
max-width: max-content;
border-radius: 0.5em;
}
.content_notice .stub {
background-color: #FFFF00A0;
color: black;
}
.content_notice .stub a {
color: inherit;
font-weight: bolder;
text-shadow: 0px 0px 2px cyan;
transition: 100ms text-shadow ease-in-out;
} .content_notice .stub a:hover {
text-shadow: 0px 0px 5px red;
}