2019-12-22 03:30:05 +00:00
|
|
|
|
/*
|
|
|
|
|
* littlelink V1
|
|
|
|
|
* https://littlelink.com
|
|
|
|
|
* Free to use under the MIT license.
|
|
|
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
|
|
|
* 12/21/2019
|
|
|
|
|
*
|
|
|
|
|
* Built using:
|
|
|
|
|
*
|
|
|
|
|
* Skeleton V2.0.4
|
|
|
|
|
* Copyright 2014, Dave Gamache
|
|
|
|
|
* www.getskeleton.com
|
|
|
|
|
* Free to use under the MIT license.
|
|
|
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
|
|
|
* 12/29/2014
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Table of contents
|
|
|
|
|
––––––––––––––––––––––––––––––––––––––––––––––––––
|
|
|
|
|
- Grid
|
|
|
|
|
- Base Styles
|
|
|
|
|
- Typography
|
|
|
|
|
- Links
|
|
|
|
|
- Code
|
|
|
|
|
- Spacing
|
|
|
|
|
- Utilities
|
|
|
|
|
*
|
|
|
|
|
* You'll find the button css in css/brands.css.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Grid
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
.container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 600px;
|
2020-04-14 01:26:25 +00:00
|
|
|
|
text-align: center;
|
2019-12-22 03:30:05 +00:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 0 20px;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
.column {
|
|
|
|
|
position: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
float: center;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* For devices larger than 400px */
|
|
|
|
|
@media (min-width: 400px) {
|
|
|
|
|
.container {
|
|
|
|
|
width: 85%;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For devices larger than 550px */
|
|
|
|
|
@media (min-width: 550px) {
|
|
|
|
|
.container {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
width: 80%;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
.column,
|
|
|
|
|
.columns {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
.column:first-child,
|
|
|
|
|
.columns:first-child {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Base Styles
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
/* NOTE
|
|
|
|
|
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
|
|
|
|
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
2022-02-10 02:10:24 +00:00
|
|
|
|
|
2019-12-22 03:30:05 +00:00
|
|
|
|
html {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
font-size: 100%;
|
|
|
|
|
color-scheme: light;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
body {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
font-weight: 400;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
|
|
|
|
|
sans-serif;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* Typography
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
h1 {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 16px;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
font-weight: 800;
|
|
|
|
|
}
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
line-height: 64px;
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* Larger than phablet */
|
|
|
|
|
@media (min-width: 550px) {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
h1 {
|
|
|
|
|
font-size: 48px;
|
|
|
|
|
line-height: 96px;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* Links
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
a {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
color: #0085ff;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
a:hover {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
color: #0085ff;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* Code
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
code {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
padding: 0.2rem 0.5rem;
|
|
|
|
|
margin: 0 0.2rem;
|
2019-12-22 03:30:05 +00:00
|
|
|
|
font-size: 90%;
|
|
|
|
|
white-space: nowrap;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
background: #f1f1f1;
|
|
|
|
|
border: 1px solid #e1e1e1;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
pre > code {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 1rem 1.5rem;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
white-space: pre;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* Spacing
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
button,
|
|
|
|
|
.button {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
input,
|
|
|
|
|
textarea,
|
|
|
|
|
select,
|
|
|
|
|
fieldset {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
pre,
|
|
|
|
|
blockquote,
|
|
|
|
|
dl,
|
|
|
|
|
figure,
|
|
|
|
|
p,
|
|
|
|
|
ol {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
margin-bottom: 2.5rem;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* Utilities
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
.u-full-width {
|
|
|
|
|
width: 100%;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
.u-max-full-width {
|
|
|
|
|
max-width: 100%;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
.u-pull-right {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
float: right;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
.u-pull-left {
|
2022-02-10 02:10:24 +00:00
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-12-22 03:30:05 +00:00
|
|
|
|
|
|
|
|
|
/* Misc
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
hr {
|
|
|
|
|
margin-top: 3rem;
|
|
|
|
|
margin-bottom: 3.5rem;
|
|
|
|
|
border-width: 0;
|
2022-02-10 02:10:24 +00:00
|
|
|
|
border-top: 1px solid #e1e1e1;
|
|
|
|
|
}
|