summaryrefslogtreecommitdiffstats
path: root/examples/multilingual/static
diff options
context:
space:
mode:
authorEgon Elbre <egonelbre@gmail.com>2015-04-26 19:23:38 +0300
committerbep <bjorn.erik.pedersen@gmail.com>2015-05-07 21:16:38 +0200
commit9cd8673f3e1bee595013e3be28fa0b3418c37823 (patch)
tree14dba894a48fb3f328bfc855324e282988ef759b /examples/multilingual/static
parent9123ac559e0db5974b01209c3267b398cd972243 (diff)
Added missing files, make the site look better.
Diffstat (limited to 'examples/multilingual/static')
-rw-r--r--examples/multilingual/static/main.css89
-rw-r--r--examples/multilingual/static/static/main.css89
2 files changed, 89 insertions, 89 deletions
diff --git a/examples/multilingual/static/main.css b/examples/multilingual/static/main.css
new file mode 100644
index 000000000..713c7d272
--- /dev/null
+++ b/examples/multilingual/static/main.css
@@ -0,0 +1,89 @@
+* { box-sizing: border-box; }
+html, body { margin: 0; padding: 0; }
+
+body {
+ max-width: 800px;
+ margin: 0 auto;
+
+ color: #333;
+}
+
+.clear { clear: both; }
+
+
+#language-menu, #main-menu, #title, #subtitle {
+ font-family: Georgia;
+ font-variant: small-caps;
+}
+
+.copy-left {
+ display: inline-block;
+ text-align: right;
+ margin: 0px;
+ -moz-transform: scaleX(-1);
+ -o-transform: scaleX(-1);
+ -webkit-transform: scaleX(-1);
+ transform: scaleX(-1);
+ filter: FlipH;
+ -ms-filter: "FlipH";
+}
+
+/* Language Menu */
+
+#language-menu { float: right; }
+#language-menu a {
+ display: block;
+ padding: 8px 10px;
+ width: 100px;
+
+ transition: border-left 0.3s ease-in-out;
+ border-left: 2px solid #FFF;
+}
+#language-menu a:hover { border-left: 2px solid #A00; }
+#language-menu a, #language-menu a:visited {
+ color: #333;
+}
+
+/* Main Menu */
+
+#main-menu {
+ margin-top: 20px;
+ border-left: 2px solid #A00;
+ padding-left: 10px;
+}
+
+#main-menu a {
+ float: left;
+ width: 100px;
+ text-align: center;
+
+ padding: 5px 10px;
+ margin: 0;
+
+ text-decoration: none;
+ font-size: 18px;
+
+ transition: border-bottom 0.3s ease-in-out;
+ border-bottom: 2px solid #FFF;
+}
+
+#main-menu a:hover {
+ border-bottom: 2px solid #A00;
+}
+
+/* Content */
+
+article h3 {
+ margin-bottom: 3px;
+}
+.post-meta {
+ color: #888;
+ margin-bottom: 10px;
+}
+
+/* Footer */
+
+#footer {
+ margin: 50px 0;
+ text-align: center;
+} \ No newline at end of file
diff --git a/examples/multilingual/static/static/main.css b/examples/multilingual/static/static/main.css
deleted file mode 100644
index bf8284d56..000000000
--- a/examples/multilingual/static/static/main.css
+++ /dev/null
@@ -1,89 +0,0 @@
-* {
- box-sizing: border-box;
-}
-
-html, body {
- margin: 0;
- padding: 0;
-}
-
-body {
- max-width: 600px;
- margin: 0 auto;
- background: #fefefe;
-}
-
-header {
- padding: 0 30px;
- padding-top: 10px;
- border-bottom: 1px solid #999;
-}
-
-.title {
- clear: both;
- font-family: Georgia;
- text-align: center;
-}
-
-.subtitle {
- font-family: Georgia;
- background: #eee;
- margin: 0;
- padding: 5px;
- border-radius: 0 0 50px 50px;
- text-align: center;
-
- margin-bottom: 10px;
-}
-
-.menu a {
- text-decoration: none;
-}
-
-.language-menu {
- float: right;
-}
-
-.language-menu ul {
- list-style: none;
-}
-
-.language-menu ul li {
- float: left;
- padding-right: 10px;
- border-right: 1px solid #ccc;
- margin-right: 10px;
-}
-
-.main-menu {
- text-align: center;
-}
-
-.main-menu ul {
- list-style: none;
-}
-
-.main-menu ul li {
- display: inline-block;
- padding: 5px 15px;
- border-radius: 3px;
-}
-
-.main-menu ul li:hover, .main-menu ul li:active {
- background: #eef;
-}
-
-.clear {
- clear: both;
-}
-
-body > footer {
- font-family: Georgia;
- background: #eee;
- margin: 0;
- padding: 10px;
- padding-bottom: 20px;
- border-radius: 50px 50px 0 0;
- text-align: center;
- border-bottom: 1px solid #999;
-} \ No newline at end of file