-
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.
Merge pull request #4 from MasterOfTheTiger/dev
Updated Styling and Manual Date Entering
- Loading branch information
Showing
3,008 changed files
with
111,746 additions
and
47 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,13 +1,13 @@ | ||
# apod-extension | ||
Web extension to show the latest Astronomy Picture of the Day | ||
|
||
## Plans | ||
Here are the plans I have for this extension: | ||
|
||
-Improve styling | ||
|
||
## What I have done | ||
I have completely changed the extension, the only thing that is the same is the icons. | ||
|
||
- Sorting through images | ||
- Manually entering dates | ||
- W3.css | ||
- Footer | ||
|
||
## Contributing | ||
If you want to help, please do. I don't know how to use GitHub very well. So it would be great. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,65 @@ | ||
body { | ||
/*min-width: 357px; | ||
max-width: 500px;*/ | ||
width: 400px; | ||
overflow-x: hidden; | ||
font-family: sans-serif; | ||
padding: 10px; | ||
padding-top: 10px; | ||
} | ||
#apod_img_id { | ||
margin: 5px; | ||
border: 2px solid black; | ||
vertical-align: middle; | ||
width: 95%; | ||
height: 100%; | ||
} | ||
h1 { | ||
text-align:center; | ||
} | ||
#date { | ||
max-width: 90px; | ||
font-size: 12px; | ||
font-family: monospace; | ||
} | ||
#back { | ||
display: none; | ||
} | ||
hr { | ||
margin-bottom: 2px; | ||
margin-top: 5px; | ||
border: none; | ||
border: 1px dashed #000; | ||
} | ||
|
||
.arrow { | ||
size: 10%; | ||
} | ||
|
||
#apod_title { | ||
font-family: Arial; | ||
} | ||
a { | ||
color: #61dcf4; | ||
} | ||
.button { | ||
border-radius: 5px; | ||
border-style: solid; | ||
border-color: #d8d8d8; | ||
padding: 6px; | ||
padding-right: 25px; | ||
padding-left: 25px; | ||
background-color: #efefef; | ||
font-size: 13px; | ||
font-family: arial; | ||
border-width: thin; | ||
} | ||
|
||
.button:hover { | ||
background-color: #d8d8d8; | ||
cursor: default; | ||
} | ||
.button:active { | ||
background-color: lightblue; | ||
border-color: lightblue | ||
} |
Oops, something went wrong.