Choices/public/assets/styles/base.css

182 lines
2.2 KiB
CSS
Raw Normal View History

2021-12-19 23:43:03 +01:00
/* =============================================
2018-05-25 15:00:27 +02:00
= Generic styling =
2021-12-19 23:43:03 +01:00
============================================= */
2018-05-25 15:00:27 +02:00
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2018-05-27 13:04:42 +02:00
*,
2021-12-19 23:43:03 +01:00
*::before,
*::after {
2018-05-25 15:00:27 +02:00
box-sizing: border-box;
}
2018-05-27 13:04:42 +02:00
html,
body {
2018-05-25 15:00:27 +02:00
position: relative;
margin: 0;
width: 100%;
height: 100%;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
2018-05-25 15:00:27 +02:00
font-size: 16px;
line-height: 1.4;
2021-12-19 23:43:03 +01:00
color: #fff;
2018-05-25 15:00:27 +02:00
background-color: #333;
overflow-x: hidden;
}
label {
display: block;
margin-bottom: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}
p {
margin-top: 0;
2021-12-19 23:43:03 +01:00
margin-bottom: 8px;
2018-05-25 15:00:27 +02:00
}
hr {
display: block;
margin: 30px 0;
border: 0;
border-bottom: 1px solid #eaeaea;
height: 1px;
}
2018-05-27 13:04:42 +02:00
h1,
h2,
h3,
h4,
h5,
h6 {
2018-05-25 15:00:27 +02:00
margin-top: 0;
margin-bottom: 12px;
font-weight: 400;
line-height: 1.2;
}
2018-05-27 13:04:42 +02:00
a,
a:visited,
a:focus {
2021-12-19 23:43:03 +01:00
color: #fff;
2018-05-25 15:00:27 +02:00
text-decoration: none;
font-weight: 600;
}
.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;
2021-12-19 23:43:03 +01:00
appearance: none;
2018-05-25 15:00:27 +02:00
margin-bottom: 24px;
}
2018-05-27 13:04:42 +02:00
h1,
.h1 {
2018-05-25 15:00:27 +02:00
font-size: 32px;
}
2018-05-27 13:04:42 +02:00
h2,
.h2 {
2018-05-25 15:00:27 +02:00
font-size: 24px;
}
2018-05-27 13:04:42 +02:00
h3,
.h3 {
2018-05-25 15:00:27 +02:00
font-size: 20px;
}
2018-05-27 13:04:42 +02:00
h4,
.h4 {
2018-05-25 15:00:27 +02:00
font-size: 18px;
}
2018-05-27 13:04:42 +02:00
h5,
.h5 {
2018-05-25 15:00:27 +02:00
font-size: 16px;
}
2018-05-27 13:04:42 +02:00
h6,
.h6 {
2018-05-25 15:00:27 +02:00
font-size: 14px;
}
2019-02-11 22:47:47 +01:00
label + p {
margin-top: -4px;
}
2018-05-25 15:00:27 +02:00
.container {
display: block;
margin: auto;
max-width: 40em;
padding: 48px;
}
@media (max-width: 620px) {
.container {
padding: 0;
}
}
.section {
2021-12-19 23:43:03 +01:00
background-color: #fff;
2018-05-25 15:00:27 +02:00
padding: 24px;
color: #333;
}
2018-05-27 13:04:42 +02:00
.section a,
.section a:visited,
.section a:focus {
2018-05-25 15:00:27 +02:00
color: #00bcd4;
}
.logo {
display: block;
margin-bottom: 12px;
}
2021-12-19 23:43:03 +01:00
.logo-img {
2018-05-25 15:00:27 +02:00
width: 100%;
height: auto;
display: inline-block;
max-width: 100%;
vertical-align: top;
padding: 6px 0;
}
.visible-ie {
display: none;
}
.push-bottom {
margin-bottom: 24px;
}
2018-05-25 15:00:27 +02:00
.zero-bottom {
margin-bottom: 0;
}
.zero-top {
margin-top: 0;
}
.text-center {
text-align: center;
}
2018-10-13 13:18:02 +02:00
[data-test-hook] {
margin-bottom: 24px;
}
2021-12-19 23:43:03 +01:00
/* ===== End of Section comment block ====== */