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
34 changes: 27 additions & 7 deletions css/blockly@rduino.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ body {
font-family: "OpenDyslexic";
}

.rotate180 {
/*.rotate180 {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
Expand All @@ -37,7 +37,7 @@ body {
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
}
}*/

#header {
background: #00969C;
Expand Down Expand Up @@ -148,38 +148,49 @@ html[dir="RTL"] .menuPanel-ver {
.div_help_button-ver {
width: 200px;
bottom: 10px;
position: absolute;
padding: 5px;
/* position: absolute;*/
text-align: center;
}

.div_tools_button-ver {
width: 200px;
bottom: 50px;
position: absolute;
padding: 5px;
/* position: absolute;*/
text-align: center;
}

#btn_for_menu{

}

#div_about {
width: 200px;
bottom: 130px;
position: absolute;
padding: 5px;
/* position: absolute;*/
text-align: center;
}

.div_help_button-hor {
padding-left: 0px;
bottom: 10px;
position: absolute;
padding: 5px;
/* position: absolute;*/
text-align: center;
}

#div_accessibility_button {
width: 200px;
bottom: 90px;
position: absolute;
padding: 5px;
/* position: absolute;*/
text-align: center;
}



html[dir="RTL"] .navbar-right {
margin-right: -50px;
width: 225px;
Expand Down Expand Up @@ -392,6 +403,15 @@ html[dir="RTL"] #select_all {
border-top: none !important;
}

#div_arduino_btn {
max-height: 10%;
}

.btn-primary{
max-height:8%;
margin: 3px;
}

#debug_arduino {
height: 25%;
border-width: 2px;
Expand Down
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@
</a>
</div>
<input type="file" id="load" style="display: none;" />
<div id="btn_for_menu">
<div id="div_about">
<button id="btn_about" type="button" class="btn btn-default btn-sm btn-success" data-toggle="modal" data-target="#aboutModal">
<span id="span_about"> </span>
Expand Down Expand Up @@ -321,6 +322,7 @@
<span class="glyphicon glyphicon-question-sign"></span>
</a>
</div>
</div>
</div>
<!-- Nav tabs -->
<div id="divTabpanel" role="tabpanel">
Expand All @@ -333,6 +335,7 @@
</button>
</div>
<div id="content_arduino" class="tab-pane">
<div id="div_arduino_btn">
<select id="cb_cf_boards"></select>
<select id="cb_cf_ports"></select>
<a id="btn_plugin_codebender" class='btn btn-danger' href="https://codebender.cc/static/plugin" target="_blank" role='button'>
Expand Down Expand Up @@ -372,6 +375,7 @@
<span id="span_pasteIDEArduino"> </span>
</button>
<img id="LocalCodebenderLogo" height="35"/>
</div>
<pre id="pre_arduino"></pre>
<div id="debug_arduino"></div>
<div id="local_debug">
Expand Down
Loading