|
@@ -9,16 +9,15 @@ html, body {
|
|
|
min-height: 100%;
|
|
|
height: auto !important;
|
|
|
height: 100%;
|
|
|
- margin: 0 auto -52px;
|
|
|
+ margin: 0 auto -40px;
|
|
|
}
|
|
|
footer, #footer-push {
|
|
|
- height: 20px;
|
|
|
+ height: 40px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
|
|
|
|
|
|
/*center content on large screens*/
|
|
|
-.mdc-toolbar__row,
|
|
|
main {
|
|
|
max-width: 1200px;
|
|
|
margin: 0 auto;
|
|
@@ -26,14 +25,10 @@ main {
|
|
|
|
|
|
/*font family*/
|
|
|
body,
|
|
|
-body #wrapper,
|
|
|
-body #wrapper header.mdc-toolbar .mdc-toolbar__title,
|
|
|
-body #wrapper header.mdc-toolbar nav.mdc-tab-bar a,
|
|
|
body label,
|
|
|
body input,
|
|
|
body select,
|
|
|
-body button,
|
|
|
-body h4 {
|
|
|
+body button {
|
|
|
font-family: 'Monospace', monospace !important;
|
|
|
}
|
|
|
|
|
@@ -42,22 +37,43 @@ body h4 {
|
|
|
main {
|
|
|
padding: 90px 0 30px 0;
|
|
|
}
|
|
|
+a { text-decoration: none; }
|
|
|
+a:hover { text-decoration: none; }
|
|
|
|
|
|
|
|
|
/*header*/
|
|
|
-header .mdc-toolbar__title { margin: 0; }
|
|
|
-header nav { float: right; margin: 0 !important; }
|
|
|
-header nav a { color: #fff !important; min-width: auto !important; }
|
|
|
+#header {
|
|
|
+ background: #607d8b;
|
|
|
+ position: fixed;
|
|
|
+ z-index: 100;
|
|
|
+ width: 100%;
|
|
|
+ height: 60px;
|
|
|
+ font-size: 20px;
|
|
|
+ line-height: 60px;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+#header .holder {
|
|
|
+ width: 100%;
|
|
|
+ max-width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+#header span {
|
|
|
+}
|
|
|
+#header a {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
|
|
|
|
|
|
/*footer*/
|
|
|
footer {
|
|
|
font-size: 14px;
|
|
|
- line-height: 20px;
|
|
|
+ line-height: 40px;
|
|
|
color: #9e9e9e;
|
|
|
text-align: center;
|
|
|
background: #424242;
|
|
|
- padding: 16px 40px;
|
|
|
}
|
|
|
footer a {
|
|
|
color: #9e9e9e;
|
|
@@ -112,10 +128,19 @@ footer .icon-hidden {
|
|
|
margin: 0 0 30px 0;
|
|
|
}
|
|
|
.bs-callout h4 {
|
|
|
+ font-size: 24px;
|
|
|
line-height: 36px;
|
|
|
+ font-weight: normal;
|
|
|
margin: 0 !important;
|
|
|
}
|
|
|
|
|
|
+.mdc-elevation--z2 {
|
|
|
+ box-shadow:
|
|
|
+ 0 3px 1px -2px rgba(0,0,0,.2),
|
|
|
+ 0 2px 2px 0 rgba(0,0,0,.14),
|
|
|
+ 0 1px 5px 0 rgba(0,0,0,.12);
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
/*button*/
|
|
|
.m-button {
|