aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/assets/css/themes
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-13 20:18:04 -0700
committerAllan Wang <me@allanwang.ca>2017-06-13 20:18:04 -0700
commitdc032ff328fc5e7db3a2ce807ce07c71a1c2d200 (patch)
treebb20824aa3a08b6d1d8288d9be31a0cf06f4cbb1 /app/src/main/assets/css/themes
parent0ac9d2181536b79a6057c3b526f32a1cc8ac4704 (diff)
downloadfrost-dc032ff328fc5e7db3a2ce807ce07c71a1c2d200.tar.gz
frost-dc032ff328fc5e7db3a2ce807ce07c71a1c2d200.tar.bz2
frost-dc032ff328fc5e7db3a2ce807ce07c71a1c2d200.zip
Add sass for newsfeed
Diffstat (limited to 'app/src/main/assets/css/themes')
-rw-r--r--app/src/main/assets/css/themes/main.compact.css23
-rw-r--r--app/src/main/assets/css/themes/main.scss70
2 files changed, 93 insertions, 0 deletions
diff --git a/app/src/main/assets/css/themes/main.compact.css b/app/src/main/assets/css/themes/main.compact.css
new file mode 100644
index 00000000..b0328353
--- /dev/null
+++ b/app/src/main/assets/css/themes/main.compact.css
@@ -0,0 +1,23 @@
+body, #root, #header, .aclb, ._55wo, ._1upc, input, ._2f9r, ._59e9, ._d4i, .acw, ._3f50, ._uww, textarea { background: #451515 !important; }
+
+button::before, .touch ._56bt, ._56be::before, .btnS, .touch::before, ._5xo2, ._5u5a::before, ._4u3j, ._15ks, ._2v9s, ._4e8n { background: rgba(108, 33, 33, 0.1) !important; }
+
+input, ._43mh, .touch .btn, p, span, .fcg, button, ._52j9, ._52jb, ._52ja, ._5j35, ._rnk, ._24u0, ._1g06, ._14ye, textarea, .mentions-input, .mentions-placeholder, h1, h2, h3, h4, h5, h6 { color: #d7b0d7 !important; }
+
+a { color: #8c8dd6 !important; }
+
+._15kl::before { border-left: 1px solid rgba(215, 176, 215, 0.3) !important; }
+
+._1mx0 { border-top: 1px solid rgba(215, 176, 215, 0.3) !important; }
+
+._d4i, ._4e8n, ._uww { border: 1px solid rgba(215, 176, 215, 0.3) !important; }
+
+._4o58::after { border-color: rgba(215, 176, 215, 0.3) !important; }
+
+._2ip_ ._2zh4::before, ._2ip_ ._15kk::before, ._2ip_ ._15kk + ._4u3j::before { background: rgba(215, 176, 215, 0.3) !important; }
+
+._56bf, .touch .btn { border-radius: 0 !important; border: 0 !important; }
+
+.touch ._56bt { text-shadow: none !important; }
+
+.touch .btnS { box-shadow: none !important; }
diff --git a/app/src/main/assets/css/themes/main.scss b/app/src/main/assets/css/themes/main.scss
new file mode 100644
index 00000000..e5635d20
--- /dev/null
+++ b/app/src/main/assets/css/themes/main.scss
@@ -0,0 +1,70 @@
+@import "../core/colors";
+@import "../core/base";
+
+body, #root, #header, .aclb, ._55wo, ._1upc, input, ._2f9r, ._59e9,
+//friend cards
+._d4i,
+.acw, ._3f50,
+//comment box
+._uww, textarea {
+ background: $background !important;
+}
+
+button::before, .touch ._56bt, ._56be::before, .btnS, .touch::before,
+._5xo2, ._5u5a::before, ._4u3j, ._15ks, ._2v9s,
+//comment replies
+._4e8n {
+ background: $background2 !important;
+}
+
+input, ._43mh, .touch .btn, p, span, .fcg, button, ._52j9, ._52jb, ._52ja, ._5j35, ._rnk, ._24u0, ._1g06, ._14ye,
+textarea, .mentions-input, .mentions-placeholder,
+h1, h2, h3, h4, h5, h6 {
+ color: $text !important;
+}
+
+a {
+ color: $link !important;
+}
+
+
+//border between like and comment
+._15kl::before {
+ border-left: 1px solid $divider !important;
+}
+
+//above see more
+._1mx0 {
+ border-top: 1px solid $divider !important;
+}
+
+//friend card border
+._d4i,
+//comment replies
+._4e8n,
+//comment box
+._uww {
+ border: 1px solid $divider !important;
+}
+
+//link card bottom border
+._4o58::after {
+ border-color: $divider !important;
+}
+
+._2ip_ ._2zh4::before, ._2ip_ ._15kk::before, ._2ip_ ._15kk + ._4u3j::before {
+ background: $divider !important;
+}
+
+._56bf, .touch .btn {
+ border-radius: 0 !important;
+ border: 0 !important;
+}
+
+.touch ._56bt {
+ text-shadow: none !important;
+}
+
+.touch .btnS {
+ box-shadow: none !important;
+}