Skip to content

Commit 980f7ac

Browse files
author
Ram swaroop
committed
gitignore updated, button color changed
1 parent 0388fa3 commit 980f7ac

File tree

3 files changed

+92
-2
lines changed

3 files changed

+92
-2
lines changed

.gitignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,92 @@
11
_site
22
.sass-cache
3+
4+
### JetBrains template
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
6+
7+
*.iml
8+
9+
## Directory-based project format:
10+
.idea/
11+
# if you remove the above rule, at least ignore the following:
12+
13+
# User-specific stuff:
14+
# .idea/workspace.xml
15+
# .idea/tasks.xml
16+
# .idea/dictionaries
17+
18+
# Sensitive or high-churn files:
19+
# .idea/dataSources.ids
20+
# .idea/dataSources.xml
21+
# .idea/sqlDataSources.xml
22+
# .idea/dynamic.xml
23+
# .idea/uiDesigner.xml
24+
25+
# Gradle:
26+
# .idea/gradle.xml
27+
# .idea/libraries
28+
29+
# Mongo Explorer plugin:
30+
# .idea/mongoSettings.xml
31+
32+
## File-based project format:
33+
*.ipr
34+
*.iws
35+
36+
## Plugin-specific files:
37+
38+
# IntelliJ
39+
out/
40+
41+
# mpeltonen/sbt-idea plugin
42+
.idea_modules/
43+
44+
# JIRA plugin
45+
atlassian-ide-plugin.xml
46+
47+
# Crashlytics plugin (for Android Studio and IntelliJ)
48+
com_crashlytics_export_strings.xml
49+
crashlytics.properties
50+
crashlytics-build.properties
51+
52+
53+
54+
### Eclipse template
55+
*.pydevproject
56+
.metadata
57+
.gradle
58+
bin/
59+
tmp/
60+
*.tmp
61+
*.bak
62+
*.swp
63+
*~.nib
64+
local.properties
65+
.settings/
66+
.loadpath
67+
68+
# Eclipse Core
69+
.project
70+
71+
# External tool builders
72+
.externalToolBuilders/
73+
74+
# Locally stored "Eclipse launch configurations"
75+
*.launch
76+
77+
# CDT-specific
78+
.cproject
79+
80+
# JDT-specific (Eclipse Java Development Tools)
81+
.classpath
82+
83+
# PDT-specific
84+
.buildpath
85+
86+
# sbteclipse plugin
87+
.target
88+
89+
# TeXlipse plugin
90+
.texlipse
91+
92+

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ theme:
2222
2323
# Icons
2424
rss: true
25-
email_address: "ram@compzets.com" # Full email address, e.g. "sam@example.com"
25+
email_address: # Full email address, e.g. "sam@example.com"
2626
behance:
2727
bitbucket:
2828
dribbble:

_sass/base/_variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $border-color: rgba(0, 0, 0, 0.1); // rgba recommended if using feature images
1515

1616
// Typography colours
1717
$text-color: #383838;
18-
$link-color: #1ABC9C;
18+
$link-color: #F98752;
1919
$selection-color: #D4D4D4; // visible when highlighting text
2020

2121
// Header colours

0 commit comments

Comments
 (0)