summaryrefslogtreecommitdiff
path: root/assets/css/src/base.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/src/base.css')
-rw-r--r--assets/css/src/base.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/assets/css/src/base.css b/assets/css/src/base.css
new file mode 100644
index 00000000..a8c7d73e
--- /dev/null
+++ b/assets/css/src/base.css
@@ -0,0 +1,43 @@
+/* reset */
+li,
+ul,
+ol,
+table,
+tr,
+td,
+th,
+p,
+blockquote,
+body {
+ margin: 0;
+ padding: 0;
+ font-size: 100%;
+}
+
+body {
+ margin-left: 10px;
+ margin-right: 10px;
+ padding-bottom: 20px;
+ color: #333;
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
+ -webkit-font-smoothing: antialiased;
+ font-smoothing: antialiased;
+ text-rendering: optimizeLegibility;
+ -webkit-text-size-adjust: 100%;
+}
+
+ul.no-bullet li {
+ list-style-type: none;
+ margin-left: 0;
+}
+
+.pull-right {
+ text-align: right;
+}
+
+hr {
+ border: 0;
+ height: 0;
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
+ border-bottom: 1px solid rgba(255, 255, 255, 0.3);
+}