unpkg/client/index.css

137 lines
1.8 KiB
CSS
Raw Normal View History

2017-06-09 20:49:27 +00:00
body {
2016-09-24 17:24:24 +00:00
font-size: 16px;
font-family: -apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Helvetica,
Arial,
2016-09-24 18:41:19 +00:00
sans-serif;
2016-05-20 18:58:58 +00:00
line-height: 1.5;
padding: 5px 20px;
}
@media (min-width: 800px) {
2016-05-20 18:58:58 +00:00
body {
padding: 40px 20px 120px;
2016-05-20 18:58:58 +00:00
}
}
a:link {
color: blue;
}
a:visited {
color: rebeccapurple;
}
h1 {
font-size: 2em;
2016-05-20 18:58:58 +00:00
}
h2 {
font-size: 1.8em;
2016-05-20 18:58:58 +00:00
}
h3 {
font-size: 1.6em;
2016-05-20 18:58:58 +00:00
}
ul {
padding-left: 25px;
2016-05-20 18:58:58 +00:00
}
dd {
margin-left: 25px;
2016-05-20 18:58:58 +00:00
}
table {
border: 1px solid black;
border: 0;
2016-05-20 18:58:58 +00:00
}
th {
text-align: left;
background-color: #eee;
}
th, td {
padding: 5px;
}
th {
vertical-align: bottom;
}
td {
vertical-align: top;
2016-05-20 18:58:58 +00:00
}
2017-06-09 20:49:27 +00:00
.wrapper {
max-width: 700px;
2016-05-20 18:58:58 +00:00
margin: 0 auto;
}
.layout-title {
margin: 0;
text-transform: uppercase;
2016-05-20 18:58:58 +00:00
text-align: center;
font-size: 5em;
2016-05-20 18:58:58 +00:00
}
.layout-nav {
margin: 0 0 3em;
}
.layout-nav-list {
2016-05-20 18:58:58 +00:00
margin: 0;
padding: 0;
2016-05-20 18:58:58 +00:00
display: flex;
justify-content: center;
}
.layout-nav-list li {
2016-05-20 18:58:58 +00:00
flex-basis: auto;
list-style-type: none;
display: inline-block;
font-size: 1.1em;
margin: 0 10px;
2016-05-20 18:58:58 +00:00
}
.layout-nav-list li a:link {
2016-05-20 18:58:58 +00:00
text-decoration: none;
}
.layout-nav-list li a:link,
.layout-nav-list li a:visited {
color: black;
}
.layout-nav-underline {
2016-05-20 18:58:58 +00:00
height: 4px;
background-color: black;
position: absolute;
left: 0;
}
.home-example {
text-align: center;
background-color: #eee;
margin: 2em 0;
padding: 5px 0;
}
.table-filter {
font-size: 0.8em;
text-align: right;
}
.regions-table .continent-row {
font-weight: bold;
}
.regions-table .country-row td.country-name {
padding-left: 20px;
}
2016-06-18 19:54:01 +00:00
.about-logos {
2016-05-20 18:58:58 +00:00
margin: 2em 0;
display: flex;
justify-content: center;
}
2016-06-18 19:54:01 +00:00
.about-logo {
2016-05-20 18:58:58 +00:00
text-align: center;
flex: 1;
max-width: 80%;
}
2016-06-18 19:54:01 +00:00
.about-logo img {
2016-05-20 18:58:58 +00:00
max-width: 60%;
}