Skip to content

Commit cb4e6ac

Browse files
committed
Added theme files
1 parent 8937d66 commit cb4e6ac

File tree

5 files changed

+421
-0
lines changed

5 files changed

+421
-0
lines changed

brands.css

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
2+
/* Table of contents
3+
––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
- Rounded user avatars
6+
- Buttons
7+
- Brand Styles
8+
9+
*/
10+
11+
12+
/* Rounded avatars
13+
–––––––––––––––––––––––––––––––––––––––––––––––––– */
14+
15+
/* Disable this if you don't want rounded avatars for users
16+
.rounded-avatar {
17+
border-radius: 50%;
18+
}
19+
*/
20+
21+
/* Buttons
22+
–––––––––––––––––––––––––––––––––––––––––––––––––– */
23+
24+
.button,
25+
button {
26+
border: 2px solid #000;
27+
webkit-box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7;
28+
box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7;
29+
background: #999 url('https://i48.servimg.com/u/f48/18/06/99/75/bgbtn10.png');
30+
background-size: cover;
31+
background-position: center;
32+
color: #DDD;
33+
text-align: center;
34+
font-size: 20px;
35+
cursor: context-menu;
36+
image-rendering: pixelated;
37+
max-width: 400px;
38+
margin-bottom: 10px;
39+
min-width: 90%;
40+
padding: 10px;
41+
}
42+
button:hover,
43+
.button:hover {
44+
background-color: rgba(100, 100, 255, .45);
45+
height: 100%;
46+
width: 100%;
47+
z-index: 5;
48+
color: #FFF;
49+
border: 2px solid rgb(255, 255, 255);
50+
}
51+
52+
53+
/* Brand Icons
54+
–––––––––––––––––––––––––––––––––––––––––––––––––– */
55+
56+
.icon {
57+
padding: 0px 8px 3.5px 0px;
58+
vertical-align: middle;
59+
width: 20px;
60+
height: 20px;
61+
}
62+

preview.png

1.84 MB
Loading

readme.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# A LittleLink Custom Theme
2+
Find more themes: https://github.com/JulianPrieber/llc-themes
3+
4+
* Theme Name: Minceraft
5+
* Theme Version: 1.0
6+
* Theme Date: 2022-05-19
7+
* Theme Author: JulianPrieber
8+
* Theme Author URI: https://github.com/JulianPrieber
9+
* Theme License: GPLv3 (Non-commercial use only)
10+
11+
12+
### Used assets:
13+
* Built using:
14+
* https://github.com/dhg/Skeleton
15+
* License: MIT
16+
17+
*
18+
* https://codepen.io/SimonDiligues/pen/gObEyym
19+
* License: MIT
20+
21+
*
22+
* https://www.dafont.com/minecrafter.font
23+
* License: Non-commercial use only
24+
25+
*
26+
* https://www.dafont.com/minecraft.font
27+
* License: Non-commercial use only

share.button.css

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.share-icon {
2+
padding: 0px 8px 3.5px 0px;
3+
vertical-align: middle;
4+
width: 20px;
5+
height: 20px;
6+
-webkit-filter: invert(100%);
7+
-moz-filter: invert(100%);
8+
filter: invert(100%);
9+
}
10+
11+
.sharediv {
12+
position:relative;
13+
top: 30px;
14+
right: 30px;
15+
padding-bottom: 40px;
16+
}
17+
18+
.sharebutton,
19+
sharebutton {
20+
21+
webkit-box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7;
22+
box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7;
23+
background: #999 url('https://i48.servimg.com/u/f48/18/06/99/75/bgbtn10.png');
24+
background-size: cover;
25+
background-position: center;
26+
color: #DDD;
27+
text-align: center;
28+
font-size: 20px;
29+
cursor: context-menu;
30+
image-rendering: pixelated;
31+
margin-bottom: 10px;
32+
max-width: 25px;
33+
padding: 10px;
34+
}
35+
sharebutton:hover,
36+
.sharebutton:hover {
37+
background-color: rgba(100, 100, 255, .45);
38+
height: 100%;
39+
width: 100%;
40+
z-index: 5;
41+
border: 2px solid #ffffff !important;
42+
}
43+
.sharebutton-mb {
44+
display: none;
45+
}

0 commit comments

Comments
 (0)