wikimd 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,136 +0,0 @@
1
- @import "normalize";
2
- @import "syntax";
3
- $octicons-font-path: "/assets/font";
4
- @import "octicons";
5
-
6
- // Vars
7
- $color-brand: hsl(100, 86%, 32%);
8
- $color-text: #444;
9
-
10
- $topbar-height: 56px;
11
- $sidebar-width: 300px;
12
-
13
- /* Setup */
14
- * {
15
- box-sizing: border-box;
16
- }
17
- hr {
18
- display: block;
19
- height: 1px;
20
- border: 0;
21
- border-top: 1px solid #ccc;
22
- margin: 1em 0;
23
- padding: 0;
24
- }
25
-
26
- body {
27
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
28
- font-size: 16px;
29
- line-height: 1.5;
30
- font-weight: 300;
31
- color: $color-text;
32
- background-color: #f2f2f2;
33
- }
34
-
35
- h1,h2,h3,h4,h5,h6 {
36
- color: #444;
37
- margin-top: 20px;
38
- margin-bottom: 10px;
39
- font-weight: 600;
40
- }
41
- h1 {
42
- font-size: 32px;
43
- border-bottom: 1px solid #ccc;
44
- }
45
-
46
- h1 small {
47
- color: lighten(#444, 30%);
48
- }
49
-
50
- p {
51
- margin-bottom: 10px;
52
- }
53
-
54
- a, a:visited {
55
- color: $color-brand;
56
- text-decoration: none;
57
- font-weight: 600;
58
- }
59
-
60
- code {
61
- color: #000;
62
- background: #f8f8f8;
63
- border: 1px solid #e5e5e5;
64
- border-radius: 3px;
65
- }
66
- pre code {
67
- border: none;
68
- }
69
-
70
- /*
71
- * Actual Styling!
72
- */
73
- @import "topbar";
74
- @import "sidebar";
75
- @import "tree_view";
76
-
77
- main {
78
- padding-left: $sidebar-width;
79
- padding-top: $topbar-height;
80
- }
81
-
82
- .content {
83
- margin: 30px;
84
- margin-left: 0;
85
- padding: 30px;
86
- background: #fff;
87
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
88
- border: 1px solid #ddd;
89
- }
90
- .content h1:first-of-type {
91
- margin-top: 0;
92
- }
93
-
94
- .highlight {
95
- background-color: #f8f8f8;
96
- padding: 10px;
97
- border-radius: 4px;
98
- }
99
-
100
- .actions {
101
- text-align: right;
102
- margin-bottom: -24px;
103
- }
104
-
105
- .alert {
106
- border: 1px solid;
107
- padding: 8px 16px;
108
- }
109
-
110
- .alert-info {
111
- color: #31708f;
112
- background-color: #d9edf7;
113
- border-color: #bcdff1;
114
- }
115
-
116
- .history {
117
- border: 1px solid #bbb;
118
- padding: 0;
119
- list-style: none;
120
-
121
- li {
122
- border-bottom: 1px solid #bbb;
123
- padding: 8px 16px;
124
- }
125
- li:last-child {
126
- border: none;
127
- }
128
- .rev {
129
- display: inline-block;
130
- width: 80px;
131
- }
132
- .date {
133
- display: inline-block;
134
- width: 160px;
135
- }
136
- }
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
-
3
- cd "$(dirname $0)/.."
4
-
5
- bundle exec scss --style=compressed --sourcemap=none _scss/wikimd.scss:lib/wikimd/app/public/assets/css/wikimd.css $@
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'pry'
5
- $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
6
-
7
- Pry.start
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
-
3
- cd "$(dirname $0)/.."
4
-
5
- bundle check &>/dev/null || bundle install