Choices/assets/styles/css/base.css

89 lines
1.6 KiB
CSS

/*=============================================
= Generic styling =
=============================================*/
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
*, *:before, *:after {
box-sizing: border-box; }
html {
font-size: 62.5%; }
html, body {
position: relative;
margin: 0;
width: 100%; }
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 1.6rem;
line-height: 1.4;
color: #FFFFFF;
background-color: #333;
background: -webkit-linear-gradient(right top, #333, #262626);
background: linear-gradient(to left bottom, #333, #262626);
height: 100%;
overflow-x: hidden; }
label {
display: block;
margin-bottom: .8rem;
font-size: 1.4rem;
font-weight: 500; }
hr {
display: block;
margin: 3.6rem 0;
border: 0;
border-bottom: 1px solid #eaeaea;
height: 1px; }
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 1.2rem;
font-weight: 400;
line-height: 1.2; }
a, a:visited, a:focus {
color: #FFFFFF;
text-decoration: none;
font-weight: 600; }
h1, .h1 {
font-size: 3.2rem; }
h2, .h2 {
font-size: 2.4rem; }
h3, .h3 {
font-size: 2rem; }
h4, .h4 {
font-size: 1.8rem; }
h5, .h5 {
font-size: 1.6rem; }
h6, .h6 {
font-size: 1.4rem; }
.container {
display: block;
margin: auto;
max-width: 40em;
padding: 4.8rem; }
@media (max-width: 620px) {
.container {
padding: 0; } }
.section {
background-color: #FFFFFF;
padding: 2.4rem;
color: #333; }
.section a, .section a:visited, .section a:focus {
color: #00bcd4; }
/*===== End of Section comment block ======*/