-
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
1 parent
8937d66
commit cb4e6ac
Showing
5 changed files
with
421 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
|
||
/* Table of contents | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– | ||
- Rounded user avatars | ||
- Buttons | ||
- Brand Styles | ||
*/ | ||
|
||
|
||
/* Rounded avatars | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– */ | ||
|
||
/* Disable this if you don't want rounded avatars for users | ||
.rounded-avatar { | ||
border-radius: 50%; | ||
} | ||
*/ | ||
|
||
/* Buttons | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– */ | ||
|
||
.button, | ||
button { | ||
border: 2px solid #000; | ||
webkit-box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7; | ||
box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7; | ||
background: #999 url('https://i48.servimg.com/u/f48/18/06/99/75/bgbtn10.png'); | ||
background-size: cover; | ||
background-position: center; | ||
color: #DDD; | ||
text-align: center; | ||
font-size: 20px; | ||
cursor: context-menu; | ||
image-rendering: pixelated; | ||
max-width: 400px; | ||
margin-bottom: 10px; | ||
min-width: 90%; | ||
padding: 10px; | ||
} | ||
button:hover, | ||
.button:hover { | ||
background-color: rgba(100, 100, 255, .45); | ||
height: 100%; | ||
width: 100%; | ||
z-index: 5; | ||
color: #FFF; | ||
border: 2px solid rgb(255, 255, 255); | ||
} | ||
|
||
|
||
/* Brand Icons | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– */ | ||
|
||
.icon { | ||
padding: 0px 8px 3.5px 0px; | ||
vertical-align: middle; | ||
width: 20px; | ||
height: 20px; | ||
} | ||
|
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,27 @@ | ||
# A LittleLink Custom Theme | ||
Find more themes: https://github.com/JulianPrieber/llc-themes | ||
|
||
* Theme Name: Minceraft | ||
* Theme Version: 1.0 | ||
* Theme Date: 2022-05-19 | ||
* Theme Author: JulianPrieber | ||
* Theme Author URI: https://github.com/JulianPrieber | ||
* Theme License: GPLv3 (Non-commercial use only) | ||
|
||
|
||
### Used assets: | ||
* Built using: | ||
* https://github.com/dhg/Skeleton | ||
* License: MIT | ||
|
||
* | ||
* https://codepen.io/SimonDiligues/pen/gObEyym | ||
* License: MIT | ||
|
||
* | ||
* https://www.dafont.com/minecrafter.font | ||
* License: Non-commercial use only | ||
|
||
* | ||
* https://www.dafont.com/minecraft.font | ||
* License: Non-commercial use only |
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,45 @@ | ||
.share-icon { | ||
padding: 0px 8px 3.5px 0px; | ||
vertical-align: middle; | ||
width: 20px; | ||
height: 20px; | ||
-webkit-filter: invert(100%); | ||
-moz-filter: invert(100%); | ||
filter: invert(100%); | ||
} | ||
|
||
.sharediv { | ||
position:relative; | ||
top: 30px; | ||
right: 30px; | ||
padding-bottom: 40px; | ||
} | ||
|
||
.sharebutton, | ||
sharebutton { | ||
|
||
webkit-box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7; | ||
box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7; | ||
background: #999 url('https://i48.servimg.com/u/f48/18/06/99/75/bgbtn10.png'); | ||
background-size: cover; | ||
background-position: center; | ||
color: #DDD; | ||
text-align: center; | ||
font-size: 20px; | ||
cursor: context-menu; | ||
image-rendering: pixelated; | ||
margin-bottom: 10px; | ||
max-width: 25px; | ||
padding: 10px; | ||
} | ||
sharebutton:hover, | ||
.sharebutton:hover { | ||
background-color: rgba(100, 100, 255, .45); | ||
height: 100%; | ||
width: 100%; | ||
z-index: 5; | ||
border: 2px solid #ffffff !important; | ||
} | ||
.sharebutton-mb { | ||
display: none; | ||
} |
Oops, something went wrong.