-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed knowledge score as it was stupid
- Loading branch information
Showing
7 changed files
with
42 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,49 @@ | ||
/* Edit/Delete/New button styles */ | ||
a.new-skill, a.edit-skill, a.delete-skill { | ||
position: absolute; | ||
right: 0; | ||
top: 3px; | ||
position: absolute; | ||
right: 0; | ||
top: 3px; | ||
} | ||
|
||
a.edit-skill { | ||
right: 120px; | ||
right: 120px; | ||
} | ||
|
||
/* Skill index styles */ | ||
.skills > .third { | ||
text-align: center; | ||
margin: 10px; | ||
padding: 20px; | ||
width: 30%; | ||
width: calc(33.3% - 20px); | ||
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3); | ||
-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3); | ||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3); | ||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
position: relative; | ||
text-align: center; | ||
margin: 10px; | ||
padding: 20px 20px 70px 20px; | ||
width: 30%; | ||
width: calc(33.3% - 20px); | ||
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3); | ||
-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3); | ||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3); | ||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
} | ||
|
||
.skills > .third:nth-child(3n+1) { | ||
margin-left: 0; | ||
margin-right: 20px; | ||
margin-left: 0; | ||
margin-right: 20px; | ||
} | ||
|
||
.skills > .third:nth-child(3n) { | ||
margin-right: 0; | ||
margin-left: 20px; | ||
margin-right: 0; | ||
margin-left: 20px; | ||
} | ||
|
||
.skills > .third a { | ||
position: absolute; | ||
bottom: 20px; | ||
left: 0; | ||
right: 0; | ||
margin: 0 auto; | ||
width: 70px; | ||
} | ||
.skills > .third p | ||
{ | ||
margin-bottom: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class RemoveKnowledgeFromSkills < ActiveRecord::Migration | ||
def change | ||
remove_column :skills, :knowledge, :integer | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters