Choices/src/styles/css/base.css

158 lines
2.1 KiB
CSS
Raw Normal View History

2016-07-11 10:46:48 +02:00
/*=============================================
= Generic styling =
=============================================*/
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2016-07-11 10:46:48 +02:00
*, *:before, *:after {
box-sizing: border-box;
}
2016-07-11 10:46:48 +02:00
html, body {
position: relative;
2016-07-11 10:46:48 +02:00
margin: 0;
width: 100%;
height: 100%;
}
2016-07-11 10:46:48 +02:00
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 16px;
2016-07-11 10:46:48 +02:00
line-height: 1.4;
color: #FFFFFF;
background-color: #333;
overflow-x: hidden;
}
2016-07-11 10:46:48 +02:00
label {
display: block;
margin-bottom: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}
2016-07-11 10:46:48 +02:00
p {
margin-top: 0;
}
2016-07-11 10:46:48 +02:00
hr {
display: block;
2017-07-24 16:23:30 +02:00
margin: 30px 0;
2016-07-11 10:46:48 +02:00
border: 0;
border-bottom: 1px solid #eaeaea;
height: 1px;
}
2016-07-11 10:46:48 +02:00
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 12px;
2016-07-11 10:46:48 +02:00
font-weight: 400;
line-height: 1.2;
}
2016-07-11 10:46:48 +02:00
2016-07-30 17:07:03 +02:00
a, a:visited, a:focus {
color: #FFFFFF;
2016-07-30 17:07:03 +02:00
text-decoration: none;
font-weight: 600;
}
2016-07-30 17:07:03 +02:00
.form-control {
display: block;
width: 100%;
background-color: #f9f9f9;
padding: 12px;
border: 1px solid #ddd;
border-radius: 2.5px;
font-size: 14px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin-bottom: 24px;
}
2016-07-11 10:46:48 +02:00
h1, .h1 {
font-size: 32px;
}
2016-07-11 10:46:48 +02:00
h2, .h2 {
font-size: 24px;
}
2016-07-11 10:46:48 +02:00
h3, .h3 {
font-size: 20px;
}
2016-07-11 10:46:48 +02:00
h4, .h4 {
font-size: 18px;
}
2016-07-11 10:46:48 +02:00
h5, .h5 {
font-size: 16px;
}
2016-07-11 10:46:48 +02:00
h6, .h6 {
font-size: 14px;
}
2016-07-11 10:46:48 +02:00
.container {
display: block;
margin: auto;
max-width: 40em;
padding: 48px;
}
@media (max-width: 620px) {
.container {
padding: 0;
}
}
2016-07-11 10:46:48 +02:00
.section {
background-color: #FFFFFF;
padding: 24px;
color: #333;
}
.section a, .section a:visited, .section a:focus {
color: #00bcd4;
}
2016-07-11 10:46:48 +02:00
2016-08-04 23:25:35 +02:00
.logo {
2016-09-29 14:55:31 +02:00
display: block;
margin-bottom: 12px;
}
2016-09-29 14:55:31 +02:00
.logo__img {
width: 100%;
height: auto;
2016-08-04 23:25:35 +02:00
display: inline-block;
max-width: 100%;
vertical-align: top;
padding: 6px 0;
}
2016-08-04 23:25:35 +02:00
.visible-ie {
display: none;
}
2016-08-04 23:25:35 +02:00
2017-03-28 15:41:12 +02:00
.zero-bottom {
margin-bottom: 0;
}
.zero-top {
margin-top: 0;
}
2017-07-24 16:23:30 +02:00
.text-center {
text-align: center;
}
.is-hidden {
display: none;
}
2016-07-11 10:46:48 +02:00
/*===== End of Section comment block ======*/