Version alpha
This commit is contained in:
parent
54c24457e9
commit
c4b001c253
40 changed files with 9954 additions and 1317 deletions
BIN
style/images/background_pattern.png
Executable file
BIN
style/images/background_pattern.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
BIN
style/images/body_pattern.png
Normal file
BIN
style/images/body_pattern.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 244 B |
BIN
style/images/release_pattern.png
Normal file
BIN
style/images/release_pattern.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
189
style/style.css
Executable file
189
style/style.css
Executable file
|
@ -0,0 +1,189 @@
|
|||
@charset "utf-8";
|
||||
/* CSS Document */
|
||||
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Trebuchet MS";
|
||||
background-image: url('images/background_pattern.png');
|
||||
text-shadow : 0 2px 23px white;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #2D4C6B;
|
||||
text-align: center;
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin: 18px 18px 0 18px;
|
||||
}
|
||||
|
||||
.more, .releaseFilesButton {
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-left: 25px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.expandButton {
|
||||
padding: 1px 6px;
|
||||
width: 30px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
#body {
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: white;
|
||||
margin: 25px;
|
||||
padding: 10px;
|
||||
box-shadow: 0 3px 10px #222323;
|
||||
-webkit-box-shadow : 0 3px 10px #222323;
|
||||
-moz-box-shadow : 0 3px 10px #222323;
|
||||
background-image: url('images/body_pattern.png');
|
||||
}
|
||||
|
||||
#allreleases {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#copyright {
|
||||
float: right;
|
||||
}
|
||||
|
||||
footer {
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: white;
|
||||
margin: 25px;
|
||||
padding: 10px;
|
||||
box-shadow: 0 3px 10px #222323;
|
||||
-webkit-box-shadow : 0 3px 10px #222323;
|
||||
-moz-box-shadow : 0 3px 10px #222323;
|
||||
background-image: url('images/body_pattern.png');
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0f7eff;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
text-shadow : 0 2px 15px white;
|
||||
}
|
||||
.release {
|
||||
border: #3d3d3d 2px solid;
|
||||
padding: 10px;
|
||||
background-color: white;
|
||||
color: black;
|
||||
background-image: url('images/release_pattern.png');
|
||||
margin: 0 15px 15px 15px;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.download , .changelog, .files{
|
||||
border: 1px solid black;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
margin: 5px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.wiki, .releaseFilesContainer {
|
||||
background-color: white;
|
||||
margin: 25px;
|
||||
padding: 10px;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
box-shadow: 0 1px 10px #222323;
|
||||
-webkit-box-shadow : 0 1px 10px #222323;
|
||||
-moz-box-shadow : 0 1px 10px #222323;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.releaseFiles {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.releaseFiles p {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.RL_search {
|
||||
background-color: white;
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.minecraftDotJar {
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 20px;
|
||||
background-image: url("images/icons/bookshelf.png");
|
||||
}
|
||||
|
||||
.dir , .file {
|
||||
color: black;
|
||||
text-decoration: underline;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background: none;
|
||||
border: none;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.dir.closed{
|
||||
background-image: url("images/icons/bookMore.png");
|
||||
}
|
||||
|
||||
.dir.opened{
|
||||
background-image: url("images/icons/bookLess.png");
|
||||
}
|
||||
|
||||
.file {
|
||||
background-image: url("images/icons/paper.png");
|
||||
}
|
||||
|
||||
/*.file a {
|
||||
color: #0f7eff;
|
||||
}*/
|
||||
|
||||
.file.image {
|
||||
background-image: url("images/icons/painting.png");
|
||||
|
||||
}
|
||||
|
||||
.file.technic {
|
||||
background-image: url("images/icons/map.png");
|
||||
}
|
||||
|
||||
.file.txt {
|
||||
background-image: url("images/icons/sign.png");
|
||||
|
||||
}
|
Reference in a new issue