mirror of
https://github.com/marcrobledo/savegame-editors.git
synced 2025-04-24 16:35:10 +00:00
added botw master editor
This commit is contained in:
parent
d0bb5b213d
commit
6844f5e7e7
BIN
zelda-botw-master/favicon.png
Normal file
BIN
zelda-botw-master/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
BIN
zelda-botw-master/game_data.sav
Normal file
BIN
zelda-botw-master/game_data.sav
Normal file
Binary file not shown.
45
zelda-botw-master/index.html
Normal file
45
zelda-botw-master/index.html
Normal file
@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html manifest="savegame-editor.appcache">
|
||||
<head>
|
||||
<title>Savegame Editor – The legend of Zelda: Breath of the wild (Master editor)</title>
|
||||
<meta http-equiv="content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="description" content="A savegame editor for The legend of Zelda: Breath of the wild. This master version allows you to edit everything in the savegame."/>
|
||||
<meta name="keywords" content="html5, savegame, save, editor, hack, exploit, wii u, zelda, breath of the wild, botw, weapon, durability, modifier, horse, epona, korok, unlocker, dlc, amiibo"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
|
||||
<link rel="shortcut icon" href="./favicon.png"/>
|
||||
<link type="text/css" rel="stylesheet" href="./zelda-botw-master.css" media="all"/>
|
||||
<script type="text/javascript" src="../savegame-editor.js"></script>
|
||||
<script type="text/javascript" src="./zelda-botw-master.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- HEADER -->
|
||||
<div id="header">
|
||||
<div id="header-top">
|
||||
<div class="row wrapper padding-vertical">
|
||||
<h1>Savegame Editor for The legend of Zelda: BOTW (Master Editor)</h1>
|
||||
<div class="six columns text-left">Zelda: BOTW Savegame Master Editor</div>
|
||||
<div class="six columns text-right header-buttons">
|
||||
by <a href="/" class="author">Marc Robledo</a>
|
||||
<a href="https://github.com/marcrobledo/savegame-editors/tree/master/zelda-botw-master" target="_blank" class="button"><span class="sprite github"></span> See on GitHub</a>
|
||||
<a href="https://www.paypal.me/marcrobledo/5" target="_blank" rel="nofollow" class="donate button"><span class="sprite heart"></span> Donate</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="toolbar" class="hidden padding-vertical">
|
||||
<div class="row wrapper">
|
||||
<div class="twelve columns text-center">
|
||||
<span id="span-version"></span> | <button class="with-icon icon1" onclick="SavegameEditor.addItem()">Add item</button>
|
||||
| <button class="button with-icon icon3" onclick="closeFile()">Close file</button>
|
||||
<button class="button colored blue with-icon icon9" onclick="saveChanges()">Save changes</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- THE EDITOR -->
|
||||
<div id="the-editor" class="wrapper hidden"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
12
zelda-botw-master/savegame-editor.appcache
Normal file
12
zelda-botw-master/savegame-editor.appcache
Normal file
@ -0,0 +1,12 @@
|
||||
CACHE MANIFEST
|
||||
#v20170705
|
||||
#CACHE:
|
||||
index.html
|
||||
zelda-botw-master.css
|
||||
zelda-botw-master.js
|
||||
favicon.png
|
||||
../savegame-editor.js
|
||||
|
||||
# force these files to be loaded in network
|
||||
NETWORK:
|
||||
*
|
BIN
zelda-botw-master/thumb.jpg
Normal file
BIN
zelda-botw-master/thumb.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
551
zelda-botw-master/zelda-botw-master.css
Normal file
551
zelda-botw-master/zelda-botw-master.css
Normal file
@ -0,0 +1,551 @@
|
||||
/* Zelda BOTW Savegame editor by Marc Robledo v20170521 */
|
||||
/* minify at https://cssminifier.com/ + https://www.base64-image.de/ (sprites */
|
||||
|
||||
/* @FONT-FACES */
|
||||
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,800');
|
||||
|
||||
|
||||
body{
|
||||
font:15px 'Open Sans',sans-serif;
|
||||
cursor:default;
|
||||
margin:180px 0 80px;
|
||||
background-color:#160c0c;
|
||||
color:#f9f5da;
|
||||
}
|
||||
|
||||
/* flex box */
|
||||
.row{
|
||||
display:flex;
|
||||
flex-flow:row wrap; /* this is the same as flex-direction:row;flex-wrap:wrap; */
|
||||
align-items:center; /* vertical align */
|
||||
justify-content:space-between
|
||||
}
|
||||
.columns.c1,.columns.one{width:7.33333%}
|
||||
.columns.c2,.columns.two{width:15.66667%}
|
||||
.columns.c3,.columns.three{width:24%}
|
||||
.columns.c4,.columns.four{width:32.33333%}
|
||||
.columns.c5,.columns.five{width:40.66667%}
|
||||
.columns.c6,.columns.six{width:49%}
|
||||
.columns.c7,.columns.seven{width:57.33333%}
|
||||
.columns.c8,.columns.eight{width:65.66667%}
|
||||
.columns.c9,.columns.nine{width:74%}
|
||||
.columns.c10,.columns.ten{width:82.33333%}
|
||||
.columns.c11,.columns.eleven{width:90.66667%}
|
||||
.columns.c12,.columns.twelve{width:99%}
|
||||
|
||||
/* grid box */
|
||||
.row-items{
|
||||
background-color:rgba(0,0,0,.4);
|
||||
position:relative;
|
||||
margin-bottom:4px;
|
||||
padding:10px;
|
||||
}
|
||||
.row-items img{max-width:100%}
|
||||
.row-items img:hover{background-color:#222}
|
||||
.item-number{position:absolute;top:0;left:0; color:#444;font-family:monospace;font-size:80%}
|
||||
.tiles span{display:block}
|
||||
|
||||
/* useful classes */
|
||||
.help:hover{cursor:help}
|
||||
.hidden{display:none}
|
||||
.mono{}
|
||||
.clickable{cursor:pointer} /* also Safari iOS fix for clickable elements */
|
||||
.text-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
|
||||
.text-left{text-align:left}
|
||||
.text-right{text-align:right}
|
||||
.text-center{text-align:center}
|
||||
.text-justify{text-align:justify}
|
||||
.padding-vertical{padding:20px 0}
|
||||
.round{border-radius:3px}
|
||||
/* colors */
|
||||
.bg-light-gray{background-color:rgba(216,216,216,.99)}
|
||||
.bg-mid-gray{background-color:rgba(144,144,144,.99);color:white}
|
||||
.bg-dark-gray{background-color:rgba(72,72,72,.99);color:white}
|
||||
.bg-red{background-color:#e74c3c}
|
||||
.bg-orange{background-color:#f39c12}
|
||||
.bg-blue{background-color:#3498db}
|
||||
.bg-green{background-color:#25ba84}
|
||||
.fnt-white{color:white}
|
||||
.fnt-light-gray{color:#d8d8d8}
|
||||
.fnt-mid-gray{color:#909090}
|
||||
.fnt-dark-gray{color:#48484}
|
||||
.fnt-red{color:#e74c3c}
|
||||
/*.fnt-red{color:#fe5d05}*/
|
||||
.fnt-orange{color:#f39c12}
|
||||
/*.fnt-orange{color:#feb806}*/
|
||||
.fnt-blue{color:#3498db}
|
||||
.fnt-green{color:#25ba84}
|
||||
/*.fnt-green{color:#9ac430}*/
|
||||
.border-white{border-color:white}
|
||||
.border-light-gray{border-color:#d8d8d8}
|
||||
.border-mid-gray{border-color:#909090}
|
||||
.border-dark-gray{border-color:#48484}
|
||||
.border-red{border-color:#e74c3c}
|
||||
.border-orange{border-color:#f39c12}
|
||||
.border-blue{border-color:#3498db}
|
||||
.border-green{border-color:#25ba84}
|
||||
|
||||
/* Icons */
|
||||
span.sprite,span.icon,button.with-icon:before{
|
||||
background-image: url('data:image/png;base64,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');
|
||||
background-position:0px 0px;
|
||||
display:inline-block;
|
||||
vertical-align:middle
|
||||
}
|
||||
span.sprite{width:24px;height:24px}
|
||||
span.icon,button.with-icon:before{
|
||||
width:16px;height:16px;
|
||||
margin-right:4px;
|
||||
content:""
|
||||
}
|
||||
button.with-icon.icon0:before{background-position:-0px -16px}
|
||||
button.with-icon.icon1:before{background-position:-16px -16px}
|
||||
button.with-icon.icon2:before{background-position:-32px -16px}
|
||||
button.with-icon.icon3:before{background-position:-48px -16px}
|
||||
button.with-icon.icon4:before{background-position:-64px -16px}
|
||||
button.with-icon.icon5:before{background-position:-80px -16px}
|
||||
button.with-icon.icon6:before{background-position:-96px -16px}
|
||||
button.with-icon.icon7:before{background-position:-112px -16px}
|
||||
button.with-icon.icon8:before{background-position:-128px -16px}
|
||||
button.with-icon.icon9:before{background-position:-144px -16px}
|
||||
button.with-icon.icon10:before{background-position:-160px -16px}
|
||||
button.with-icon.colored.icon0:before{background-position:-0px -32px}
|
||||
button.with-icon.colored.icon1:before{background-position:-16px -32px}
|
||||
button.with-icon.colored.icon2:before{background-position:-32px -32px}
|
||||
button.with-icon.colored.icon3:before{background-position:-48px -32px}
|
||||
button.with-icon.colored.icon4:before{background-position:-64px -32px}
|
||||
button.with-icon.colored.icon5:before{background-position:-80px -32px}
|
||||
button.with-icon.colored.icon6:before{background-position:-96px -32px}
|
||||
button.with-icon.colored.icon7:before{background-position:-112px -32px}
|
||||
button.with-icon.colored.icon8:before{background-position:-128px -32px}
|
||||
button.with-icon.colored.icon9:before{background-position:-144px -32px}
|
||||
button.with-icon.colored.icon10:before{background-position:-160px -32px}
|
||||
span.icon.icon0,button.with-icon.transparent.icon0:before{background-position:-0px 0px}
|
||||
span.icon.icon1,button.with-icon.transparent.icon1:before{background-position:-16px 0px}
|
||||
span.icon.icon2,button.with-icon.transparent.icon2:before{background-position:-32px 0px}
|
||||
span.icon.icon3,button.with-icon.transparent.icon3:before{background-position:-48px 0px}
|
||||
span.icon.icon4,button.with-icon.transparent.icon4:before{background-position:-64px 0px}
|
||||
span.icon.icon5,button.with-icon.transparent.icon5:before{background-position:-80px 0px}
|
||||
span.icon.icon6,button.with-icon.transparent.icon6:before{background-position:-96px 0px}
|
||||
span.icon.icon7,button.with-icon.transparent.icon7:before{background-position:-112px 0px}
|
||||
span.icon.icon8,button.with-icon.transparent.icon8:before{background-position:-128px 0px}
|
||||
span.icon.icon9,button.with-icon.transparent.icon9:before{background-position:-144px 0px}
|
||||
span.icon.icon10,button.with-icon.transparent.icon10:before{background-position:-160px 0px}
|
||||
span.sprite{width:24px;height:24px}
|
||||
span.sprite.github{background-position:0px -48px;width:16px;height:16px; margin-right:5px}
|
||||
span.sprite.heart{background-position:-16px -48px;width:16px;height:16px; margin-right:5px}
|
||||
button.with-icon.file-load:before{background-position:-32px -48px;width:20px;height:20px; margin-right:8px}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* header+toolbar+footer */
|
||||
#header{
|
||||
color:#333;
|
||||
position:absolute;
|
||||
top:0;left:0;
|
||||
width:100%;
|
||||
z-index:100;
|
||||
background-color:#faf8f7;
|
||||
}
|
||||
#header:after{
|
||||
display:block;
|
||||
position:absolute;
|
||||
bottom:-3px;
|
||||
left:0;
|
||||
width:100%;
|
||||
height:3px;
|
||||
background-image:linear-gradient(to right, #0f0404 0%, #b99f65 40%, #b99f65 40%, #b99f65 65%, #0f0404 100%);
|
||||
|
||||
content:"";
|
||||
}
|
||||
#toolbar{
|
||||
padding:8px
|
||||
}
|
||||
|
||||
#header h1{display:none}
|
||||
#header h1 img{vertical-align:middle}
|
||||
|
||||
|
||||
|
||||
.header-buttons{
|
||||
font-size:85%
|
||||
}
|
||||
.header-buttons a.author{
|
||||
color:#333;
|
||||
text-decoration:none;
|
||||
border-bottom:1px solid #d3cec3;
|
||||
margin-right:10px
|
||||
}
|
||||
.header-buttons a.author:hover{
|
||||
border-color:#83d8ff
|
||||
}
|
||||
.header-buttons a.button{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#1a415d;
|
||||
padding:10px 20px;
|
||||
border-radius:3px
|
||||
}
|
||||
.header-buttons a.button:hover{
|
||||
background-color:#153044
|
||||
}
|
||||
|
||||
.donate.button{
|
||||
background-color:#51a451 !important;
|
||||
|
||||
/*text-shadow:0 -1px 0 #37a137 !important;
|
||||
background:radial-gradient(#60bd60,#398a39);*/
|
||||
animation:donateglow 2s infinite
|
||||
}
|
||||
.donate.button:hover{background-color:#3e903e !important}
|
||||
@keyframes donateglow{
|
||||
0%{box-shadow:none}
|
||||
50%{box-shadow:#d8ff7c 0 0 8px inset}
|
||||
100%{box-shadow:none}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
hr{border:none;border-top:1px dotted #bbb;margin:15px 0}
|
||||
h3{
|
||||
border-bottom:2px solid #888;
|
||||
font-size:135%;
|
||||
padding:10px 0;
|
||||
text-transform:uppercase;
|
||||
color:#b99f65
|
||||
}
|
||||
|
||||
table{width:100%}
|
||||
tbody tr:nth-child(even){background-color:#f2f2f2}
|
||||
th{background-color:#d4d4d4}
|
||||
|
||||
|
||||
|
||||
|
||||
/* forms */
|
||||
input[type=text],input[type=number],select{
|
||||
padding:6px 8px;
|
||||
width:250px;
|
||||
max-width:90%;
|
||||
font:100% 'Open Sans', sans-serif;
|
||||
border:1px solid #888;
|
||||
border-radius:2px;
|
||||
box-sizing:border-box
|
||||
}
|
||||
input[type=text]:hover,input[type=number]:hover,select:hover{
|
||||
border-color:#666
|
||||
}
|
||||
input[type=text]:focus,input[type=number]:focus,select:focus{
|
||||
box-shadow:#63bce5 0 0 4px 1px;
|
||||
border-color:#47a8df
|
||||
}
|
||||
input[type=text].error,input[type=number].error,select.error{
|
||||
box-shadow:#f88 0 0 4px 1px;
|
||||
border-color:red
|
||||
}
|
||||
input[type=text].small,input[type=number].small,select.small{width:70px}
|
||||
input[type=text].medium,input[type=number].medium,select.medium{width:130px}
|
||||
.full-width{width:100% !important;max-width:100% !important}
|
||||
|
||||
|
||||
#the-editor input[type=text],#the-editor input[type=number],#the-editor select{
|
||||
border:1px solid #444;
|
||||
border-radius:2px;
|
||||
background-color:#111;
|
||||
color:white;
|
||||
}
|
||||
#the-editor input[type=text]:hover,#the-editor input[type=number]:hover,#the-editor select:hover{
|
||||
border-color:#666
|
||||
}
|
||||
#the-editor input[type=text]:focus,#the-editor input[type=number]:focus,#the-editor select:focus{
|
||||
box-shadow:rgba(185,159,101,.5) 0 0 4px 1px;
|
||||
background-color:#222;
|
||||
border-color:#b99f65
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* buttons */
|
||||
button{
|
||||
font-family:inherit;
|
||||
font-size:100%;
|
||||
min-width:120px;
|
||||
border-radius:2px;border:1px solid;border-color:#ccc #ccc #b3b3b3;
|
||||
|
||||
padding:6px 12px;
|
||||
margin:0 5px;
|
||||
|
||||
background-color:#f0f0f0;
|
||||
background-image:linear-gradient(to bottom, #fff, #e6e6e6);
|
||||
text-shadow:0 1px 0 #f8f8f8;
|
||||
color:#333;
|
||||
|
||||
box-shadow:0px 1px 0px rgba(255, 255, 255, 0.2) inset;
|
||||
transition:border-color ease-in-out .15s;
|
||||
|
||||
box-sizing:border-box
|
||||
}
|
||||
button.small{
|
||||
min-width:1px
|
||||
}
|
||||
button:hover{
|
||||
text-shadow:none;
|
||||
border-color:#999999
|
||||
}
|
||||
button:active{
|
||||
background-image:none;
|
||||
transform:translate(0px,1px);
|
||||
border-color:#888;
|
||||
text-shadow:none;
|
||||
|
||||
box-shadow:0 2px 8px -3px rgba(0, 0, 0, 0.5) inset;
|
||||
background-color:#eeeeee;
|
||||
transform:translateY(1px)
|
||||
}
|
||||
button:focus{}
|
||||
button:disabled{opacity:.35}
|
||||
|
||||
button.colored{color:white !important}
|
||||
button.colored.blue{
|
||||
box-shadow:0 1px 0 rgba(120, 200, 230, 0.5) inset;
|
||||
background-color:#21759B;
|
||||
background-image:linear-gradient(to bottom, #2A95C5, #21759B);
|
||||
border-color:#21759B #21759B #1E6A8D;
|
||||
text-shadow:0 -1px 0 #20749a
|
||||
}
|
||||
button.colored.blue:hover{
|
||||
box-shadow:0 1px 0 rgba(120, 200, 230, 0.6) inset;
|
||||
background-color:#278AB7;
|
||||
background-image:linear-gradient(to bottom, #2E9FD2, #21759B);
|
||||
border-color:#1B607F;
|
||||
text-shadow:0 -1px 0 #1b6080
|
||||
}
|
||||
button.colored.blue:active{
|
||||
box-shadow:0 2px 8px -3px rgba(0, 0, 0, 0.5) inset;
|
||||
background:linear-gradient(to bottom, #21759B, #278AB7) repeat scroll 0 0 #1B607F;
|
||||
border-color:#124560 #0e74a3 #0e74a3;
|
||||
text-shadow:0 -1px 0 #177ea4
|
||||
}
|
||||
|
||||
button.colored.red{
|
||||
box-shadow:0 1px 0 #df4c45 inset;
|
||||
background-color:#b72319;
|
||||
background-image:linear-gradient(to bottom, #ce271d, #a41f17);
|
||||
border-color:#a41f17 #a41f17 #951d15;
|
||||
text-shadow:0 -1px 0 #a01d15
|
||||
}
|
||||
button.colored.red:hover{
|
||||
box-shadow:0 1px 0 #e8564f inset !important;
|
||||
background-color:#bf261c !important;
|
||||
background-image:linear-gradient(to bottom, #db2c20, #a52017) !important;
|
||||
border-color:#871a13 !important;
|
||||
text-shadow:0 -1px 0 #8b1b14 !important
|
||||
}
|
||||
button.colored.red:active{
|
||||
box-shadow:0 2px 8px -3px rgba(0, 0, 0, 0.5) inset !important;
|
||||
background:linear-gradient(to bottom, #a51f17, #c1251b) repeat scroll 0 0 #b22118 !important;
|
||||
border-color:#66140c #a0150d #a0150d !important;
|
||||
text-shadow:0 -1px 0 #a41e17 !important
|
||||
}
|
||||
|
||||
button.colored.green{
|
||||
box-shadow:0 1px 0 #81cf81 inset !important;
|
||||
background-color:#59b259 !important;
|
||||
background-image:linear-gradient(to bottom, #61c261, #51a351) !important;
|
||||
border-color:#52a452 #4f9f4f #448944 !important;
|
||||
text-shadow:0 -1px 0 #37a137 !important
|
||||
}
|
||||
button.colored.green:hover{
|
||||
box-shadow:0 1px 0 #99de99 inset !important;
|
||||
background-color:#278AB7 !important;
|
||||
background-image:linear-gradient(to bottom, #64ce64, #51a351) !important;
|
||||
border-color:#3f7f3f !important;
|
||||
text-shadow:0 -1px 0 #1c9216 !important
|
||||
}
|
||||
button.colored.green:active{
|
||||
box-shadow:0 2px 8px -3px rgba(0, 0, 0, 0.5) inset !important;
|
||||
background:linear-gradient(to bottom, #1e8f22, #23a627) repeat scroll 0 0 #219b24 !important;
|
||||
border-color:#105815 #17941b #17941b !important;
|
||||
text-shadow:0 -1px 0 #17a417 !important
|
||||
}
|
||||
|
||||
button.colored.orange{
|
||||
box-shadow:0 1px 0 #ffb519 inset !important;
|
||||
background-color:#e69501 !important;
|
||||
background-image:linear-gradient(to bottom, #fda502, #d08400) !important;
|
||||
border-color:#d38500 #c97e00 #b46f00 !important;
|
||||
text-shadow:0 -1px 0 #8f5901 !important
|
||||
}
|
||||
button.colored.orange:hover{
|
||||
box-shadow:0 1px 0 #ffc03c inset !important;
|
||||
background-color:#e69501 !important;
|
||||
background-image:linear-gradient(to bottom, #ffb01e, #d08400) !important;
|
||||
border-color:#a36300 !important;
|
||||
text-shadow:0 -1px 0 #95620f !important
|
||||
}
|
||||
button.colored.orange:active{
|
||||
box-shadow:0 2px 8px -3px rgba(0, 0, 0, 0.5) inset !important;
|
||||
background:linear-gradient(to bottom, #c07400, #ed9500) repeat scroll 0 0 #219b24 !important;
|
||||
border-color:#53400b #886912 #886912 !important;
|
||||
text-shadow:0 -1px 0 #654e0e !important
|
||||
}
|
||||
|
||||
|
||||
button.transparent{
|
||||
min-width:auto;
|
||||
box-shadow:none;
|
||||
padding:0;
|
||||
background:none;
|
||||
text-decoration:underline;
|
||||
border:none;
|
||||
text-shadow:none;
|
||||
color:black !important
|
||||
}
|
||||
button.transparent:hover{background-color:rgba(0,0,0,.05)}
|
||||
button.no-text.with-icon:before{margin-right:0px}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.wrapper{
|
||||
max-width:920px;
|
||||
margin:0 auto
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* MarcDragAndDrop */
|
||||
#dragzone{
|
||||
border:4px dashed #b99f65;
|
||||
color:#b99f65;
|
||||
text-align:center;
|
||||
border-radius:8px;
|
||||
position:relative;
|
||||
transition:all .2s;
|
||||
padding-bottom:20px;
|
||||
/*font-weight:bold;*/
|
||||
}
|
||||
.dragging-files #dragzone{
|
||||
border-color:#3498db;
|
||||
color:#3498db;
|
||||
background-color:white
|
||||
}
|
||||
#dragzone-message{
|
||||
font-size:180%;
|
||||
margin:128px 0;
|
||||
line-height:2
|
||||
}
|
||||
#demo{
|
||||
text-decoration:none;
|
||||
background-color:#5271e7;
|
||||
color:black;
|
||||
padding:4px 16px;
|
||||
border-radius:3px;
|
||||
clear:both
|
||||
}
|
||||
#demo:hover{
|
||||
background-color:#8a9eea;
|
||||
}
|
||||
|
||||
#warning{
|
||||
position:fixed;
|
||||
bottom:-80px;
|
||||
width:100%;
|
||||
background-color:#a30202;
|
||||
background-color:rgba(164,0,0,.96);
|
||||
color:white;
|
||||
transition:bottom .5s
|
||||
}
|
||||
#warning.visible{bottom:0px}
|
||||
#warning:hover{background-color:#b31212}
|
||||
#warning u{
|
||||
background-color:white;
|
||||
color:#b31212;
|
||||
text-decoration:none;
|
||||
padding:6px 16px;
|
||||
border-radius:3px;
|
||||
font-weight:bold
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* responsive */
|
||||
@media only screen and (max-width:961px){
|
||||
.wrapper{max-width:auto; padding-left:10px;padding-right:10px;}
|
||||
}
|
||||
@media only screen and (max-width:721px){
|
||||
#header .columns-6,#header .columns.six{width:100%;text-align:center}
|
||||
#the-editor{font-size:13px}
|
||||
}
|
||||
@media only screen and (max-width:481px){
|
||||
#the-editor{font-size:12px}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* MarcDialogs */
|
||||
#dialog-about{background-color:#ffd823}
|
||||
|
||||
|
||||
|
||||
.dialog-overlay,.dialog{visibility:hidden;opacity:0}
|
||||
.dialog-overlay.active,.dialog.active{visibility:visible;opacity:1;transition-delay:0s}/* fixes fade-in/fade-out*/
|
||||
|
||||
.dialog-overlay{
|
||||
transition:visibility 0s .2s, opacity .2s;
|
||||
|
||||
background-color:black;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";/* IE8 */
|
||||
background-color:rgba(255,255,255,.65)
|
||||
}
|
||||
|
||||
.dialog{
|
||||
position:absolute;top:0;left:0; /* fix for reserved space */
|
||||
|
||||
transform:translateY(-10px);
|
||||
transition:visibility 0s .2s, opacity .2s ease-in, transform .2s ease-in;
|
||||
|
||||
background-color:white;
|
||||
padding:15px;
|
||||
min-width:360px;
|
||||
max-width:80%;
|
||||
border-radius:4px;
|
||||
box-shadow:rgba(0,0,0,.5) 0 0 10px;
|
||||
line-height:1.8;
|
||||
color:#333;
|
||||
}
|
||||
.dialog.active{transform:translateY(0px)}
|
||||
|
||||
.buttons{
|
||||
margin-top:20px;
|
||||
text-align:center
|
||||
}
|
39313
zelda-botw-master/zelda-botw-master.js
Normal file
39313
zelda-botw-master/zelda-botw-master.js
Normal file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user