Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/schollz/onetwothree.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Scholl <zack.scholl@gmail.com>2017-12-15 17:20:40 +0300
committerZack Scholl <zack.scholl@gmail.com>2017-12-15 17:20:40 +0300
commitf4d5d6395b4ab9a386873916d7d08490f1f28574 (patch)
treea88f3d2a0845db51876449db2fe17dd590d79cc7
parentd39b1d616d49ee7df741e76fc13423eecbf9f208 (diff)
Add style 2
-rw-r--r--static/css/style2.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/static/css/style2.css b/static/css/style2.css
new file mode 100644
index 0000000..aa3618c
--- /dev/null
+++ b/static/css/style2.css
@@ -0,0 +1,62 @@
+*,
+:before,
+:after {
+ box-sizing: border-box;
+}
+html,
+body {
+ height: 100%;
+}
+body {
+ display: flex;
+ flex-direction: column;
+ font: 14px arial, sans-serif;
+ line-height: 1.45;
+ margin: 0;
+ padding: 0;
+}
+footer {
+ color: #666;
+ font-size: .9em;
+ padding: 1em 1em 2em;
+ text-align: center;
+}
+body {
+ flex: 1;
+ padding: 0 1em;
+ max-width: 50em;
+}
+.container {
+ margin: 0 auto;
+ max-width: 50em;
+}
+.homeLink:link,
+.homeLink:visited {
+ color: #000;
+ text-decoration: none;
+}
+pre {
+ background: #eee;
+ padding: 1em;
+ border-radius: 1em;
+}
+blockquote {
+ background: #ddd;
+ padding: 0.1em 1em;
+ border-radius: 1em;
+}
+
+img {
+ max-width: 100%;
+}
+table{
+ border-collapse: collapse;
+ width: 100%;
+}
+td {
+ border: 1px solid #666;
+ padding: .25em .45em;
+}
+.menu {
+ float: right;
+} \ No newline at end of file