summaryrefslogtreecommitdiff
path: root/rannak/noMobiles
diff options
context:
space:
mode:
Diffstat (limited to 'rannak/noMobiles')
-rw-r--r--rannak/noMobiles/index.html24
-rw-r--r--rannak/noMobiles/style.css28
2 files changed, 52 insertions, 0 deletions
diff --git a/rannak/noMobiles/index.html b/rannak/noMobiles/index.html
new file mode 100644
index 0000000..de64f39
--- /dev/null
+++ b/rannak/noMobiles/index.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>No Mobiles</title>
+ <link rel="stylesheet" href="style.css" type="text/css"/>
+</head>
+
+<body>
+
+ <div class="wrapper">
+ <div>
+ <h1>Vabandame</h1>
+ <p>Kahjuks ei saa Digirännakut läbida mobiilseadmel.</p>
+ <a href="../..">
+ <button>Tagasi</button>
+ </a>
+ </div>
+ </div>
+
+ </body>
+</html>
diff --git a/rannak/noMobiles/style.css b/rannak/noMobiles/style.css
new file mode 100644
index 0000000..78daa4c
--- /dev/null
+++ b/rannak/noMobiles/style.css
@@ -0,0 +1,28 @@
+body {
+ padding: 0;
+ margin: 0;
+ box-sixing: border-box;
+ background-color: #0A0A0A;
+}
+
+.wrapper {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 200px;
+ width: 100%;
+ height: 100vh;
+ color: #fff;
+ text-align: center;
+ font-size: 1.2rem;
+}
+
+
+button {
+ border-radius: 50px;
+ padding: 15px;
+ background-color: rgba(0,136,169,1);
+ border: none;
+ cursor: pointer;
+ font-size: 1.1rem;
+}