Manual tweaks; both content and style for new website.
[dcpomatic.git] / doc / manual / dcpomatic.css
index 0e4982f201cefa088379a16f89d46804de17ee05..460040b0aaaf6d2e9662551b096b8ad020e1a915 100644 (file)
@@ -1,10 +1,41 @@
+@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');
+@import url('https://fonts.googleapis.com/css?family=Bebas+Neue');
+
+h1, h2 {
+    font-family: 'Bebas Neue';
+}
+
+h1 {
+       color: #d04040;
+}
+
+h2 {
+       color: #1a9191;
+}
 body {
-    font-family: luxi sans, sans-serif;
+    font-family: 'Noto Serif JP';
     margin-left: 4em;
     margin-right: 4em;
     margin-top: 1em;
     margin-bottom: 1em;
-    background-color: #E2E8EE;
+    background-color: #fff7f5;
+}
+
+@media (min-width: 1024px) {
+    body {
+        font-size: 1.2vw;
+    }
+
+@media (max-width: 1024px) {
+    body {
+        font-size: 3vw;
+    }
+}
+
+a {
+       color: black;
+       text-underline-offset: 3px;
 }
 
 div.sidebar {
@@ -17,3 +48,31 @@ div.sidebar {
     border-style: solid;
     background-color: #E2E8EE;
 }
+
+span.guilabel {
+    border: 2px solid black;
+       color: white;
+    background-color: #1a9191;
+    padding-top: 1px;
+    padding-bottom: 1px;
+    padding-left: 3px;
+    padding-right: 3px;
+}
+
+div.note {
+    border-width: 1px;
+    border-style: solid;
+    background-color: #FFEBCF;
+    padding-top: 12pt;
+    padding-bottom: 12pt;
+    padding-left: 12pt;
+    padding-right: 12pt;
+    margin-left: 24pt;
+    margin-right: 24pt;
+    margin-top: 18pt;
+    margin-bottom: 18pt;
+}
+
+code.code {
+    font-size: 90%;
+}