2024-01-22 23:10:14 -05:00
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');
|
2024-01-24 03:20:07 -05:00
|
|
|
|
/*
|
|
|
|
|
TODO: update this to be a bit more modern
|
|
|
|
|
maybe use SASS or something
|
|
|
|
|
|
|
|
|
|
the real TODO here is finding an image that doesn't require a white background
|
|
|
|
|
*/
|
2024-01-22 23:10:14 -05:00
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background: #FFF;
|
|
|
|
|
color: #121212;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-family: 'Gloria Hallelujah', cursive;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #333;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
-o-transition: .5s;
|
|
|
|
|
-ms-transition: .5s;
|
|
|
|
|
-moz-transition: .5s;
|
|
|
|
|
-webkit-transition: .5s;
|
|
|
|
|
/* ...and now for the proper property */
|
|
|
|
|
transition: .5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.back {
|
|
|
|
|
color: #111;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#stuff {
|
|
|
|
|
margin: 55px 150px 25px 150px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-24 03:56:30 -05:00
|
|
|
|
#words,
|
|
|
|
|
#bigwords {
|
|
|
|
|
display: inline-block;
|
2024-01-24 04:05:23 -05:00
|
|
|
|
width: 67%;
|
2024-01-24 03:56:30 -05:00
|
|
|
|
}
|
|
|
|
|
|
2024-01-22 23:10:14 -05:00
|
|
|
|
#words {
|
|
|
|
|
font-size: 1.0em;
|
|
|
|
|
margin-top: -10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#bigwords {
|
|
|
|
|
font-size: 1.3em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#leftfooter {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
left: 10px;
|
|
|
|
|
font-size: 0.75em;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#rightfooter {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
font-size: 0.75em;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#header {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
margin-top: -20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 1.7em;
|
|
|
|
|
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
font-size: 1.4em;
|
2024-01-24 19:07:57 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
/*max-width: 400px;*/
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* width specific settings */
|
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
|
|
|
|
|
|
|
|
#words,
|
|
|
|
|
#bigwords {
|
|
|
|
|
width: 90%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
|
|
|
|
|
|
#words,
|
|
|
|
|
#bigwords {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#leftfooter {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#rightfooter {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 35px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#stuff {
|
|
|
|
|
margin: 15px 50px 25px 50px;
|
|
|
|
|
}
|
2024-01-22 23:10:14 -05:00
|
|
|
|
}
|