139 lines
2.2 KiB
CSS
139 lines
2.2 KiB
CSS
/* Milligram v1.3.0 https://milligram.github.io
|
|
* Copyright (c) 2017 CJ Patoilo Licensed under the MIT license
|
|
*/
|
|
|
|
*,
|
|
*:after,
|
|
*:before {
|
|
box-sizing: inherit
|
|
}
|
|
|
|
html {
|
|
box-sizing: border-box;
|
|
font-size: 62.5%
|
|
}
|
|
|
|
body {
|
|
color: #000000;
|
|
font-family: 'Helvetica', 'Arial', sans-serif;
|
|
font-size: 1.6em;
|
|
font-weight: 300;
|
|
line-height: 1.6
|
|
}
|
|
|
|
td,
|
|
th {
|
|
border-bottom: 0.1rem solid #e1e1e1;
|
|
padding: 1.2rem 1.5rem;
|
|
text-align: left
|
|
}
|
|
|
|
td:first-child,
|
|
th:first-child {
|
|
padding-left: 0
|
|
}
|
|
|
|
td:last-child,
|
|
th:last-child {
|
|
padding-right: 0
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: 300;
|
|
letter-spacing:-.1rem;
|
|
margin-bottom:2.0rem;
|
|
margin-top:1.5rem
|
|
}
|
|
|
|
h1 {
|
|
font-size:4.6rem;
|
|
line-height:1.2
|
|
}
|
|
|
|
h2 {
|
|
font-size:3.6rem;
|
|
line-height:1.25
|
|
}
|
|
|
|
h3 {
|
|
font-size:2.8rem;
|
|
line-height:1.3
|
|
}
|
|
|
|
h4 {
|
|
font-size:2.2rem;
|
|
letter-spacing:-.08rem;
|
|
line-height:1.35
|
|
}
|
|
|
|
h5 {
|
|
font-size:1.8rem;
|
|
letter-spacing:-.05rem;
|
|
line-height:1.5
|
|
}
|
|
|
|
h6 {
|
|
font-size:1.6rem;
|
|
letter-spacing:0;
|
|
line-height:1.4
|
|
}
|
|
|
|
/* General style */
|
|
h1{font-size: 3.6rem; line-height: 1.25}
|
|
h2{font-size: 2.8rem; line-height: 1.3}
|
|
h3{font-size: 2.2rem; letter-spacing: -.08rem; line-height: 1.35}
|
|
h4{font-size: 1.8rem; letter-spacing: -.05rem; line-height: 1.5}
|
|
h5{font-size: 1.6rem; letter-spacing: 0; line-height: 1.4}
|
|
h6{font-size: 1.4rem; letter-spacing: 0; line-height: 1.2}
|
|
pre{padding: 1em;}
|
|
|
|
.container{
|
|
margin: 0 auto;
|
|
max-width: 100.0rem;
|
|
padding: 0 2.0rem;
|
|
position: relative;
|
|
width: 100%
|
|
}
|
|
select {
|
|
width: auto;
|
|
}
|
|
|
|
.tab {
|
|
overflow: hidden;
|
|
border: 1px solid #ccc;
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
/* Style the buttons that are used to open the tab content */
|
|
.tab button {
|
|
background-color: inherit;
|
|
float: left;
|
|
border: none;
|
|
outline: none;
|
|
cursor: pointer;
|
|
padding: 14px 16px;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
/* Change background color of buttons on hover */
|
|
.tab button:hover {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
/* Create an active/current tablink class */
|
|
.tab button.active {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
/* Style the tab content */
|
|
.tabcontent {
|
|
display: none;
|
|
padding: 6px 12px;
|
|
border: 1px solid #ccc;
|
|
border-top: none;
|
|
} |