aaronmaynard / Skyrim-Perk-Utility

Add / Reset your Skyrim perks using generated scripts with an easy to use graphical interface! :memo: :video_game:
https://aaronmaynard.github.io/Skyrim-Perk-Utility/
GNU General Public License v3.0
28 stars 19 forks source link

Add styling for "input" button #2

Closed aaronmaynard closed 6 years ago

aaronmaynard commented 6 years ago

first-timers-only

This issue is tagged :octocat: first-timers-only. It is only for people who have never contributed to open source before and are looking for an easy way take their first steps.

Consider this as your chance to dip your toe into the world of open-source and get some bragging rights for writing code that makes drones fly, cars find charging stations, helps people and goods move from place to place and more...

Thank you for your help ❤️

Your task is to add styling for a button that will be added on the webpage, which you can view HERE.

Just add the input styling in the docs/css/style.css under the button styling. It should look like this when your done:

button {
  background: rgb(64, 64, 64);
  border: 1px solid rgb(0,0,0);
  color: white;
  cursor: pointer;
  padding: 6px 10px;
  margin: 0 0 0 5px;
}
button:hover {
  background: rgb(0,0,0);
  color: rgb(255, 153, 51);
}
input {
  background: rgb(64, 64, 64);
  border: 1px solid rgb(0,0,0);
  color: white;
  cursor: pointer;
  padding: 6px 10px;
  margin: 0 0 0 5px;
}
input:hover {
  background: rgb(0,0,0);
  color: rgb(255, 153, 51);
}

Contributing:

Asking for help

We appreciate your effort in taking the time to work on this issue and help out the open source community. If you need any help, feel free to ask below. We are always happy to help 😄