Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrja Acharya <urja.acharya@huskers.unl.edu>2019-08-08 05:02:45 +0300
committerUrja Acharya <urja.acharya@huskers.unl.edu>2019-08-08 05:02:45 +0300
commit1df118073319c3cfcaae33c60d8651c0c08ba90f (patch)
tree1e1bd0c8b559989b24b2efd4b0a530a13f54a865
parentc34e37279982281818fd493b7df58600c089848c (diff)
added pinkish theme
-rw-r--r--exampleSite/config.toml1
-rw-r--r--static/css/aafu_pinkish.css37
2 files changed, 38 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 9476975..4c233fe 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -10,6 +10,7 @@ theme = "aafu"
[params.theme]
allowToggle = true
+ # Available themes are 'light', 'dark', and 'pinkish'
mainTheme = "light"
altTheme = "dark"
diff --git a/static/css/aafu_pinkish.css b/static/css/aafu_pinkish.css
new file mode 100644
index 0000000..e820610
--- /dev/null
+++ b/static/css/aafu_pinkish.css
@@ -0,0 +1,37 @@
+body {
+ background-color: #f8f9fa;
+ color: black;
+}
+
+.profile-area {
+ background-color: #81415f;
+ color: white;
+ box-shadow: -4px -4px 5px 2px #595659;
+}
+
+a,
+.accordion {
+ color: #81415f;
+}
+
+a:hover,
+.accordion:hover {
+ color: #81415f;
+}
+
+.profile-area a {
+ color: #ffc107;
+}
+
+.profile-area a:hover {
+ color: #d6a206;
+}
+
+.skillbar {
+ background-color: #fff;
+ border: solid 1px black;
+}
+
+#skill-percent {
+ background-color: #81415f;
+}