scrapeboard/www/style.css

308 lines
4.1 KiB
CSS
Raw Normal View History

2018-07-25 22:02:44 -04:00
@import url("../../../lib/fonts/notcouriersans/regular/style.css");
@import url("../../../lib/fonts/notcouriersans/bold/style.css");
@import url("../../../lib/fonts/cantarell/bold/style.css");
body
{
2022-01-27 15:10:02 -05:00
background: url("background.png");
background-repeat: repeat;
margin: 0px;
font-family: NotCourierSans;
color: #000;
font-size: 0px;
2018-07-25 22:02:44 -04:00
}
2022-01-27 15:10:02 -05:00
body a
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
color: #000;
text-decoration: underline;
2018-07-25 22:02:44 -04:00
}
2022-01-27 15:10:02 -05:00
body a:hover
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
text-decoration: none;
2018-07-25 22:02:44 -04:00
}
div#scroll
{
position: absolute;
left: 50%;
top: 90%;
background: #000;
color: #fff;
opacity: 0.9;
padding: 5px 20px 0px 20px;
border-radius: 5px;
font-size: 34px;
cursor: pointer;
}
2022-01-27 15:10:02 -05:00
video#landing_video
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
width: 100%;
2018-07-25 22:02:44 -04:00
}
2022-01-27 15:10:02 -05:00
div#hero
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
display: grid;
margin: auto;
margin-top: 20px;
2018-07-25 22:02:44 -04:00
}
2022-01-27 15:10:02 -05:00
div#hero img
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
width: 100%;
2018-07-25 22:02:44 -04:00
margin: auto;
}
2022-01-27 15:10:02 -05:00
div#instructions
2018-07-25 22:02:44 -04:00
{
display: grid;
2022-01-27 15:10:02 -05:00
margin: auto;
2018-07-25 22:02:44 -04:00
}
div#instructions img
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
display: block;
width: 100%;
2018-07-25 22:02:44 -04:00
}
img#safety
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
display: block;
margin: 40px auto;
2022-01-27 15:10:02 -05:00
border-radius: 30px;
2018-07-25 22:02:44 -04:00
}
img#pip
2018-07-25 22:02:44 -04:00
{
2022-01-27 15:10:02 -05:00
display: block;
margin: 40px auto 0px auto;
border-radius: 8px;
}
div#demo
2018-07-25 22:02:44 -04:00
{
display: grid;
grid-template-columns: repeat(2, 1fr);
margin: 0px auto 40px auto;
2018-07-25 22:02:44 -04:00
}
div#demo div#demo_title
2018-07-25 22:02:44 -04:00
{
color: red;
font-family: NotCourierSansBold;
2018-07-25 22:02:44 -04:00
}
div#demo div#demo_link
2018-07-25 22:02:44 -04:00
{
text-align: right;
}
div#description
{
display: grid;
margin: auto;
}
div#description img
{
display: block;
width: 100%;
}
p.emotes
{
width: 100%;
padding: 10px 0px;
2022-01-27 15:10:02 -05:00
font-family: NotCourierSans;
overflow: hidden;
font-weight: bold;
background: #fff;
margin: 0px;
white-space: nowrap;
}
div#calendar
{
width: 100%;
background: #fff;
display: grid;
grid-gap: 10px;
}
div#calendar p
{
2018-07-25 22:02:44 -04:00
text-align: center;
width: 65%;
font-family: CantarellBold;
2022-06-29 23:55:35 -04:00
margin: 30px auto 20px auto;
}
div#calendar div.date
{
border: 1px solid #000;
padding: 5px;
font-family: NotCourierSans;
}
div#calendar div.upcoming
{
color: #000;
}
div#calendar div.past
{
color: #888;
background: #eee;
2018-07-25 22:02:44 -04:00
}
div#calendar div.current
2022-01-27 15:10:02 -05:00
{
background: #ffa;
}
div#calendar div.date div.day-of-week
{
font-size: 16px;
font-weight: bold;
}
div#calendar div.date div.day
{
font-size: 26px;
font-weight: bold;
}
div#calendar div.date div.year
{
font-size: 16px;
2022-01-27 15:10:02 -05:00
font-weight: bold;
}
div#calendar div.date div.location
{
font-size: 16px;
}
div#mailing-list-join
{
font-size: 34px;
font-family: CantarellBold;
margin: 0px;
2022-06-29 23:55:35 -04:00
padding-top: 40px;
background: #fff;
text-align: center;
}
2022-06-29 23:55:35 -04:00
div#mailing-list-form
{
background: #fff;
margin: auto;
padding-top: 20px;
2022-06-29 23:55:35 -04:00
padding-bottom: 20px;
text-align: center;
}
2022-06-29 23:55:35 -04:00
div#mailing-list-form input
{
font-family: NotCourierSans;
2022-06-29 23:55:35 -04:00
}
div#mailing-list-form button
{
padding: 0px 20px;
}
div#mailing-list-archives
{
font-size: 18px;
font-family: CantarellBold;
padding-bottom: 40px;
background: #fff;
text-align: center;
}
p#credits-heading
{
margin-top: 40px;
font-family: CantarellBold;
font-size: 34px;
font-weight: bold;
text-align: center;
}
div#credits
{
margin: auto;
}
div#credits p#links
{
display: grid;
width: 100%;
align-items: center;
2022-01-27 15:10:02 -05:00
}
div#boarding
{
display: grid;
margin: 40px auto;
}
2018-07-25 22:02:44 -04:00
div#boarding img
{
2022-01-27 15:10:02 -05:00
box-sizing: border-box;
2018-07-25 22:02:44 -04:00
border-radius: 30px;
border: 8px solid black;
2022-01-27 15:10:02 -05:00
width: 100%;
2018-07-25 22:02:44 -04:00
}
2018-12-19 17:32:09 -05:00
2022-01-27 15:10:02 -05:00
div#comedy
2018-12-19 17:32:09 -05:00
{
2022-01-27 15:10:02 -05:00
max-width: 889px;
max-height: 500px;
width: 90vw;
height: 50.85vw;
2018-12-19 17:32:09 -05:00
text-align: center;
2022-01-27 15:10:02 -05:00
margin: auto;
2018-12-19 17:32:09 -05:00
margin-top: 50px;
}
2022-01-27 15:10:02 -05:00
div#comedy iframe
2018-12-19 17:32:09 -05:00
{
border-radius: 30px;
2022-01-27 15:10:02 -05:00
width: 100%;
height: 100%;
}
div#comedy_credits
{
font-size: 16px;
text-align: center;
max-width: 889px;
width: 90vw;
text-align: right;
margin: auto;
2022-01-27 15:10:02 -05:00
}
div#ink
{
width: 100%;
margin: 0;
2023-12-22 00:18:55 -05:00
margin-top: 0px;
2022-01-27 15:10:02 -05:00
padding: 0;
text-align: center;
background: rgb(253, 255, 125);
overflow: hidden;
}
div#ink img
{
width: 100%;
max-width: 700px;
margin: -40px auto -55px;
padding: 0;
border: 0;
2018-12-19 17:32:09 -05:00
}