summaryrefslogtreecommitdiff
path: root/static/website/css
diff options
context:
space:
mode:
Diffstat (limited to 'static/website/css')
-rw-r--r--static/website/css/main.css42
1 files changed, 38 insertions, 4 deletions
diff --git a/static/website/css/main.css b/static/website/css/main.css
index 7a58a4c..a5f8c81 100644
--- a/static/website/css/main.css
+++ b/static/website/css/main.css
@@ -1,3 +1,8 @@
+/* override bootstrap */
+.navbar>.container .navbar-brand {
+ margin-left: 0;
+}
+/* main styles */
.container {
max-width: 970px;
}
@@ -22,7 +27,7 @@
}
#content .editable {
padding: 15px 5px 15px 5px;
- background: lightyellow;
+ background: #F0F0F0;
}
#content .question .title a{
padding: 0 0 7px 0;
@@ -60,12 +65,14 @@
background: #f5f5f5;
color: #424242;
}
-#content .question .user {
+#content .question .meta{
position: absolute;
right: 0px;
bottom: 0px;
- padding: 2px 7px;
+}
+#content .question .user{
background: #f5f5f5;
+ padding: 2px 7px;
}
#similar-link {
display: none;
@@ -92,7 +99,8 @@
#content .reply {
position: relative;
border-bottom: 1px solid #f5f5f5;
- padding: 20px 0;
+ padding-top: 20px;
+ padding-bottom: 20px;
margin: 10px 0px;
}
#content .reply .body {
@@ -114,3 +122,29 @@
.field_error {
border: 1px solid red;
}
+.notification {
+ position: relative;
+ padding: 15px;
+ margin: 10px 0;
+ border-left: 2px solid #424242;
+ background: #f7f7f7;
+}
+.notification .remove {
+ position: absolute;
+ right: 10px;
+ top: 15px;
+}
+.my-question,
+.my-reply {
+ position: relative;
+ margin: 10px auto;
+ padding: 15px;
+ border-left: 2px solid #424242;
+ background: #f7f7f7;
+}
+.my-question .date,
+.my-reply .date {
+ position: absolute;
+ right: 5px;
+ bottom: 5px;
+}