2017-04-18 17:37:38 +00:00
|
|
|
#sim {
|
2017-12-05 11:58:24 +00:00
|
|
|
margin: 0 auto;
|
2017-12-05 10:52:59 +00:00
|
|
|
|
2017-05-18 13:01:34 +00:00
|
|
|
color: #333350;
|
2017-04-18 17:37:38 +00:00
|
|
|
transition: background-color .5s;
|
|
|
|
height: 100%;
|
2017-11-23 17:51:55 +00:00
|
|
|
max-width: 45em;
|
2017-11-21 16:58:59 +00:00
|
|
|
font-size: 130%;
|
2017-10-18 09:48:56 +00:00
|
|
|
|
2017-12-05 10:52:59 +00:00
|
|
|
height: 92%;
|
2017-12-04 18:01:28 +00:00
|
|
|
|
2017-04-18 17:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#sim p {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sim > h1 {
|
|
|
|
color: inherit;
|
2017-11-17 11:49:42 +00:00
|
|
|
margin: 1em 0;
|
2017-04-18 17:37:38 +00:00
|
|
|
font-size: 350%;
|
|
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#simSubtitle {
|
|
|
|
margin-top: -.5em;
|
2017-10-18 09:41:36 +00:00
|
|
|
font-size: 120%;
|
2017-04-18 17:37:38 +00:00
|
|
|
font-weight: 300;
|
2017-05-05 16:29:08 +00:00
|
|
|
margin-bottom: 2.5em;
|
2017-04-18 17:37:38 +00:00
|
|
|
}
|
|
|
|
|
2017-10-18 09:41:36 +00:00
|
|
|
#sim .intro {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 110%;
|
2017-04-18 17:37:38 +00:00
|
|
|
}
|
|
|
|
#sim .intro > div {
|
|
|
|
margin: 1em 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
#sim .intro i {
|
|
|
|
opacity: .9;
|
|
|
|
font-size: 250%;
|
|
|
|
margin-right: .6em;
|
|
|
|
}
|
|
|
|
#sim .intro span {
|
|
|
|
display: inline-block;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sim .action {
|
|
|
|
margin-top: 5%;
|
|
|
|
margin-bottom: 3%;
|
|
|
|
}
|
|
|
|
#sim .action p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-10-18 09:41:36 +00:00
|
|
|
#sim .intro button {
|
2017-04-18 17:37:38 +00:00
|
|
|
color: white;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
background: #4A89DC;
|
2017-10-18 09:41:36 +00:00
|
|
|
padding: .3em 1em;
|
2017-04-18 17:37:38 +00:00
|
|
|
font-size: 140%;
|
2017-10-18 09:41:36 +00:00
|
|
|
margin: 2em auto;
|
|
|
|
width: 8em;
|
2017-04-18 17:37:38 +00:00
|
|
|
border: none;
|
2017-10-18 09:41:36 +00:00
|
|
|
box-shadow: 0px 9px 14px 0px rgba(0, 0, 0, 0.1);
|
|
|
|
opacity: 0.95
|
2017-04-18 17:37:38 +00:00
|
|
|
}
|
2017-10-18 09:41:36 +00:00
|
|
|
#sim .intro button:hover {
|
2017-04-18 17:37:38 +00:00
|
|
|
box-shadow: none;
|
2017-10-18 09:41:36 +00:00
|
|
|
opacity: 1;
|
2017-04-18 17:37:38 +00:00
|
|
|
}
|
2017-12-05 16:17:57 +00:00
|
|
|
|
2017-12-06 16:42:24 +00:00
|
|
|
.scrollIndication {
|
2017-12-05 16:17:57 +00:00
|
|
|
display: block;
|
2017-12-06 16:42:24 +00:00
|
|
|
text-align: center;
|
2017-12-06 16:34:49 +00:00
|
|
|
margin: 1.4em auto;
|
2017-12-05 16:17:57 +00:00
|
|
|
transition: 1s opacity;
|
|
|
|
color: #4A89DC;
|
|
|
|
border: none;
|
2017-12-06 16:34:49 +00:00
|
|
|
font-size: 100%;
|
|
|
|
font-weight: 600;
|
2017-12-05 16:17:57 +00:00
|
|
|
}
|
2017-12-06 16:42:24 +00:00
|
|
|
.scrollIndication i {
|
|
|
|
margin: 0 .3em;
|
|
|
|
}
|
|
|
|
.scrollIndication:hover i {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.scrollIndication.up {
|
2017-12-05 16:17:57 +00:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
2017-12-06 16:42:24 +00:00
|
|
|
.scrollIndication.down {
|
2017-12-05 16:17:57 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|