-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Established structured folders to customize MkDocs Material to an Ice…
…berg look and feel Co-authored-by: Muna Bedan <[email protected]>
- Loading branch information
Showing
15 changed files
with
6,165 additions
and
93 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
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 @@ | ||
// intentionally left blank |
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,68 @@ | ||
.btn { | ||
font-size: 14px; | ||
padding: 6px 12px; | ||
margin-bottom: 0; | ||
|
||
display: inline-block; | ||
text-decoration: none; | ||
text-align: center; | ||
white-space: nowrap; | ||
vertical-align: middle; | ||
-ms-touch-action: manipulation; | ||
touch-action: manipulation; | ||
cursor: pointer; | ||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
background-image: none; | ||
border: 1px solid transparent; | ||
} | ||
.btn:focus, | ||
.btn:active:focus { | ||
outline: thin dotted; | ||
outline: 5px auto -webkit-focus-ring-color; | ||
outline-offset: -2px; | ||
} | ||
.btn:hover, | ||
.btn:focus { | ||
color: #333; | ||
text-decoration: none; | ||
} | ||
.btn:active { | ||
background-image: none; | ||
outline: 0; | ||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | ||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | ||
} | ||
|
||
.btn-lg, .btn-group-lg .btn { | ||
padding: 10px 16px; | ||
font-size: 18px; | ||
line-height: 1.33; | ||
border-radius: 6px; | ||
} | ||
|
||
/* default | ||
---------------------------- */ | ||
.btn-default { | ||
color: #333; | ||
background-color: #fff; | ||
border-color: #ccc; | ||
} | ||
.btn-default:focus { | ||
color: #333; | ||
background-color: #e6e6e6; | ||
border-color: #8c8c8c; | ||
} | ||
.btn-default:hover { | ||
color: #333; | ||
background-color: #e6e6e6; | ||
border-color: #adadad; | ||
} | ||
.btn-default:active { | ||
color: #333; | ||
background-color: #e6e6e6; | ||
border-color: #adadad; | ||
} | ||
|
Oops, something went wrong.