summaryrefslogtreecommitdiff
path: root/public/css/style.css
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2014-05-24 14:41:21 -0700
committerAaron Parecki <aaron@parecki.com>2014-05-24 14:41:21 -0700
commit3f82ec2f757c62c25a31b461e0a0cddc14886117 (patch)
tree8eb85c7f356df87f2bf477a54c7ab521002492a1 /public/css/style.css
Working app! Copied signin logic from OwnYourGram. New "post" interface for writing a simple text post. Also supports browser geolocation.
Diffstat (limited to 'public/css/style.css')
-rw-r--r--public/css/style.css78
1 files changed, 78 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css
new file mode 100644
index 0000000..4f53d68
--- /dev/null
+++ b/public/css/style.css
@@ -0,0 +1,78 @@
+body {
+ padding-top: 70px;
+}
+
+.footer {
+ padding: 40px;
+ margin-top: 20px;
+ text-align: center;
+ color: #999;
+ background-color: #f9f9f9;
+ border-top: 1px #e5e5e5 solid;
+}
+
+
+/**
+ * Bootstrap callouts
+ */
+
+/* Base styles (regardless of theme) */
+.bs-callout {
+ margin: 20px 0;
+ padding: 15px 30px 15px 15px;
+ border-left: 5px solid #eee;
+}
+.bs-callout h4 {
+ margin-top: 0;
+}
+.bs-callout p:last-child {
+ margin-bottom: 0;
+}
+.bs-callout code,
+.bs-callout .highlight {
+ background-color: #fff;
+}
+
+/* Themes for different contexts */
+.bs-callout-danger {
+ background-color: #fcf2f2;
+ border-color: #dFb5b4;
+}
+
+.bs-callout-warning {
+ background-color: #fefbed;
+ border-color: #f1e7bc;
+}
+
+.bs-callout-info {
+ background-color: #f0f7fd;
+ border-color: #d0e3f0;
+}
+
+.bs-callout-success {
+ background-color: #dff0d8;
+ border-color: #b5dca5;
+}
+
+.bs-callout-danger h4 {
+ color: #B94A48;
+}
+
+.bs-callout-warning h4 {
+ color: #C09853;
+}
+
+.bs-callout-info h4 {
+ color: #3A87AD;
+}
+
+.bs-callout-success h4 {
+ color: #3c763d;
+}
+
+
+.bs-callout.pre {
+ font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
+ word-break: break-all;
+ word-wrap: break-word;
+}