1
0
Fork 0
yummy.cricket/style.css

159 lines
2.6 KiB
CSS
Raw Normal View History

2020-06-28 20:21:02 -04:00
@import url(fonts/muller/muller.css);
2020-07-02 14:30:38 -04:00
html {
2020-06-28 20:21:02 -04:00
background:
linear-gradient(to bottom,
2020-07-03 11:26:56 -04:00
hsl(42deg, 92%, 70%),
hsl(348deg, 92%, 70%),
hsl(334deg, 100%, 80%),
hsl(234deg, 100%, 76%),
hsl(195deg, 100%, 67%)
2020-07-02 14:12:49 -04:00
)
2020-07-02 14:30:38 -04:00
fixed,
url(niss_uwu_bg.png) top center fixed;
background-blend-mode: hard-light;
}
2020-06-28 20:21:02 -04:00
2020-07-02 14:30:38 -04:00
body {
2020-06-28 20:21:02 -04:00
font-family: 'Muller';
2020-07-02 14:30:38 -04:00
font-size: 1.75rem;
2020-06-28 20:21:02 -04:00
font-weight: 500;
color: white;
text-shadow:
1px 1px 0 black,
-1px 1px 0 black,
1px -1px 0 black,
-1px -1px 0 black,
2020-07-02 14:30:38 -04:00
4px 4px 4px hsla(0, 0%, 0%, 70%);
2020-06-28 20:21:02 -04:00
text-align: center;
2020-07-02 14:30:38 -04:00
margin: 2em 0 3em;
}
main {
max-width: 35em;
padding: 1em;
2020-06-28 20:21:02 -04:00
2020-07-02 14:30:38 -04:00
background: hsla(0, 0%, 100%, 40%);
border-radius: 2em;
border: 3px solid hsla(0, 0%, 100%, 30%);
margin: 0 auto 1em;
2020-06-28 20:21:02 -04:00
}
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
margin-top: 0;
}
h1 {
font-size: 200%;
}
#mlem {
2020-07-02 15:50:01 -04:00
margin: 36px auto -50px;
2020-06-28 20:21:02 -04:00
position: relative;
height: 219px;
width: 420px;
}
.mlem-text {
position: absolute;
font-weight: 700;
2020-07-02 14:30:38 -04:00
margin: 0;
2020-06-28 20:21:02 -04:00
}
2020-07-02 14:30:38 -04:00
.niss { bottom: 100%; left: 20px; }
.nisse { bottom: 85%; right: 0; }
#mlem img {
filter: drop-shadow(0 0 30px hsla(52deg, 85%, 95%, 75%));
2020-06-28 20:21:02 -04:00
}
2020-07-02 14:30:38 -04:00
header {
2020-07-02 15:50:01 -04:00
margin: 0;
2020-06-28 20:21:02 -04:00
ruby-position: under;
}
2020-07-02 15:50:01 -04:00
header h1 {
margin-top: 0;
}
2020-07-02 14:30:38 -04:00
header rt {
2020-06-28 20:21:02 -04:00
font-size: 60%;
font-style: italic;
}
hr {
2020-07-02 14:30:38 -04:00
height: 2px;
width: 75%;
background-color: hsla(0, 0%, 100%, 75%);
mix-blend-mode: screen;
2020-06-28 20:21:02 -04:00
text-shadow: none;
margin: 20px auto;
}
dl {
display: grid;
width: 30em;
margin: auto;
grid-template-columns: 1fr 2fr 1fr 2fr;
grid-row-gap: 6px;
}
dt {
text-align: right;
}
dd {
font-weight: 600;
text-align: left;
}
[title] {
2020-06-30 18:44:23 -04:00
text-decoration: dotted underline;
text-decoration-thickness: 2px;
2020-06-28 20:21:02 -04:00
}
a {
2020-07-02 14:12:49 -04:00
color: hsl(196deg, 100%, 85%);
2020-07-02 14:30:38 -04:00
font-weight: bolder;
2020-06-28 20:21:02 -04:00
text-decoration: none;
}
2020-07-02 14:30:38 -04:00
2020-07-02 15:50:01 -04:00
header rt::before, header rt::after,
section h2::before, section h2::after {
2020-07-02 14:30:38 -04:00
mix-blend-mode: overlay;
2020-07-02 15:50:01 -04:00
padding: 0 0.25em;
vertical-align: middle;
}
header rt::before, header rt::after { content: url(star_small.png); }
section h2::before, section h2::after { content: url(sparkles_large.png); }
.emojo {
vertical-align: middle;
}
footer {
background: hsla(0, 0%, 100%, 70%);
max-width: 35em;
margin: 2em auto 0;
padding: 0.25em 0.75em;
border-radius: 0.5em;
font-size: 85%;
color: black;
text-shadow: none;
font-weight: 400;
2020-07-03 11:26:17 -04:00
display: grid;
grid-template: "e t" / 35px auto;
align-items: center;
justify-items: center;
}
footer .emojo {
display: block;
grid-area: e;
}
footer p, footer div {
grid-area: t;
2020-07-02 15:50:01 -04:00
}
footer a {
color: hsl(254deg, 50%, 50%);
2020-07-02 14:30:38 -04:00
}