Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ var language = {
'instructions': 'Drag and drop a .hex or .py file in here to open it.',
'submit': 'Load',
'save-title': 'Save',
'save-hex' : 'Download Hex',
'save-py' : 'Download Python',
'save-hex' : 'Download Project Hex',
'save-py' : 'Download Python Script',
'fs-title': 'Files',
'toggle-file': 'Or browse for a file',
'fs-add-file': 'Add file',
Expand Down
21 changes: 14 additions & 7 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,6 @@ input:checked + .menu-switch-slider:before {
color: #ffffff !important;
}


.save-buttons-container {
display: inline-block;
width: 100%;
Expand All @@ -672,14 +671,15 @@ input:checked + .menu-switch-slider:before {
.save-button.hex,
.save-button.py {
padding: 10px 20px;
margin: 10px;
margin: 10px 0px;
}
.save-button.hex {
width: 40%;
min-width: 200px;
width: 49%;
min-width: 250px;
background-color: #326699;
color: white;
border: none;
float: right;
}
.save-button.hex i {
color: white !important;
Expand All @@ -691,17 +691,24 @@ input:checked + .menu-switch-slider:before {
border: none;
}
.save-button.py {
width: 40%;
min-width: 200px;
width: 49%;
min-width: 250px;
background-color: white;
color: black;
float: left;
}
.save-button.py i {
color: #303030 !important;
}
.save-button.py:hover {
background-color: #eee;
color: #black;
color: black;
}
@media (max-width: 480px) {
.save-button.py,
.save-button.hex {
float: unset;
}
}

.save-button.show {
Expand Down