This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
-
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.
- Loading branch information
Showing
7 changed files
with
61 additions
and
51 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,57 @@ | ||
body { | ||
background-color: #F2F4F5; | ||
} | ||
|
||
.button { | ||
border: 1px solid rgb(207, 210, 211); | ||
border-radius: 4px; | ||
padding: 8px 0; | ||
text-align: center; | ||
text-decoration: none; | ||
display: inline-block; | ||
width: 4em; | ||
font-size: 16px; | ||
margin: 4px 2px; | ||
-webkit-transition-duration: 0.4s; | ||
/* Safari */ | ||
transition-duration: 0.4s; | ||
cursor: pointer; | ||
background-color: white; | ||
color: black; | ||
} | ||
|
||
.button:hover { | ||
background-color: #555555; | ||
color: white; | ||
} | ||
|
||
.button-selected { | ||
border: 1px solid #910101 !important; | ||
padding: 8px 0; | ||
text-align: center; | ||
text-decoration: none; | ||
display: inline-block; | ||
width: 4em; | ||
font-size: 16px; | ||
margin: 4px 2px; | ||
-webkit-transition-duration: 0.4s; | ||
/* Safari */ | ||
transition-duration: 0.4s; | ||
cursor: pointer; | ||
background-color: #af0806 !important; | ||
color: white; | ||
} | ||
|
||
.opts { | ||
display: block; | ||
width: max-content; | ||
padding: 10px; | ||
} | ||
|
||
.sect-title { | ||
color: #3F3F3A; | ||
font-size: 1em; | ||
font-weight: 400; | ||
display: block; | ||
font-family: "Open Sans"; | ||
} |
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