aboutsummaryrefslogtreecommitdiffstats
path: root/grapher/pl/style.css
diff options
context:
space:
mode:
authoralyx <alyx@aleteoryx.me>2022-02-06 16:09:29 +0000
committerAleteoryx <alyx@aleteoryx.me>2022-02-06 16:09:29 +0000
commitfb1876db725b1d96d3fb58d2a597a12e36ca7b39 (patch)
treee3fe932f2ba848dbb6b3f2f13816aead257a4d6a /grapher/pl/style.css
parent21bc06407c450a3ae5643d5462c452ec92b3d782 (diff)
downloadRRCUtils-fb1876db725b1d96d3fb58d2a597a12e36ca7b39.tar.gz
RRCUtils-fb1876db725b1d96d3fb58d2a597a12e36ca7b39.tar.bz2
RRCUtils-fb1876db725b1d96d3fb58d2a597a12e36ca7b39.zip
permalinking is fully operational
Diffstat (limited to 'grapher/pl/style.css')
-rw-r--r--grapher/pl/style.css60
1 files changed, 60 insertions, 0 deletions
diff --git a/grapher/pl/style.css b/grapher/pl/style.css
new file mode 100644
index 0000000..7ac40df
--- /dev/null
+++ b/grapher/pl/style.css
@@ -0,0 +1,60 @@
+@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
+
+html {
+ --foreforeground: #3788ae;
+ --foreground: #082f41;
+ --background: #03141c;
+ color: white;
+ background: var(--background);
+ /*padding: 1cm;*/
+ font-size: 12pt;
+ font-family: 'Raleway', sans-serif;
+ height: 100%;
+}
+
+body {
+ margin: 0;
+ height: 100vw;
+ overflow: hidden;
+}
+
+#frame {
+ margin:0;
+ padding:0;
+ width: 100vw;
+ height: calc(100vw - 3cm);
+ position: relative;
+ border:none;
+}
+
+#header {
+ margin:0;
+ width: 100vw;
+ height: 3cm;
+ background: var(--background);
+ position: relative;
+}
+#header > span {
+ font-size: 2cm;
+ position: absolute;
+ top: calc(50% - 1.35cm);
+ bottom: calc(50% - 1.35cm);
+ left: 0.5cm;
+}
+#header > span #author {
+ color: var(--foreforeground);
+}
+#header > a {
+ position: absolute;
+ background: var(--foreground);
+ font-size: 1cm;
+ padding: 1rem;
+ padding-bottom: 0;
+ color: white;
+ text-decoration: none;
+ border-radius: 1rem;
+ height: 1.5cm;
+ top: 0.5cm;
+ bottom: 0.75cm;
+ right: 0.75cm;
+} \ No newline at end of file