File size: 2,523 Bytes
d86254c c8e4236 d86254c 1923a66 d86254c b4b2753 d86254c 1923a66 d86254c 1923a66 25ec032 d86254c 25ec032 d86254c 25ec032 d86254c c8e4236 d86254c 25ec032 d86254c 1923a66 25ec032 1923a66 25ec032 d86254c 3a2c734 d86254c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
$global-guttering: 24px;
$global-font-size-h1: 32px;
$global-font-size-h2: 24px;
$global-font-size-h3: 20px;
$global-font-size-h4: 18px;
$global-font-size-h5: 16px;
$global-font-size-h6: 14px;
$heading-font-weight: 700;
/*=============================================
= Generic styling =
=============================================*/
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: border-box
}
html, body {
position: relative;
margin: 0;
width: 100%;
height: 100%;
}
body {
padding-top: 1px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
line-height: 1.4;
color: white;
background-color: #2E2E30;
overflow-x: hidden;
}
label {
display: block;
margin-bottom: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}
p {
margin-top: 0;
margin-bottom: 20px;
line-height: 1.5;
}
hr, .hr {
display: block;
margin: $global-guttering*1.25 0;
border: 0;
border-bottom: 1px solid #eaeaea;
height: 1px;
&.hr__fancy {
background: url("./separator.png") repeat-y;
height: 5px;
background-size: cover;
}
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: $global-guttering/2;
font-weight: $heading-font-weight;
line-height: 1.2;
}
a, a:visited, a:focus {
color: #FFFFFF;
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;
appearance: none;
outline: none;
margin-bottom: $global-guttering;
}
h1, .h1 {
font-size: $global-font-size-h1;
}
h2, .h2 {
font-size: $global-font-size-h2;
}
h3, .h3 {
font-size: $global-font-size-h3;
}
h4, .h4 {
font-size: $global-font-size-h4;
}
h5, .h5 {
font-size: $global-font-size-h5;
}
h6, .h6 {
font-size: $global-font-size-h6;
}
ul li, ol li {
list-style-type: none;
line-height: 1.5;
margin-bottom: 3px;
}
blockquote {
background: #f5f3f1;
padding: 10px;
margin-bottom: 35px;
border-radius: 10px;
}
.top-20 {
margin-top: 20px;
}
.top-30 {
margin-top: 30px;
}
.zero-bottom {
margin-bottom: 0;
}
.zero-top {
margin-top: 0;
}
.text-center {
text-align: center;
}
/*===== End of Section comment block ======*/
|