Compare commits
18 Commits
Author | SHA1 | Date | |
---|---|---|---|
89ceeefc32 | |||
91235d2377 | |||
a805d7b8a8 | |||
89fdbcdc4f | |||
92d1d2ffc3 | |||
82c9af836f | |||
da90401fe6 | |||
315a12dd8b | |||
72ec2d617e | |||
4d9ae63831 | |||
3eab21cff1 | |||
5a37385d14 | |||
9fa412ff6f | |||
3f7fbb70ba | |||
20189a709b | |||
111b321722 | |||
b8fe8f9294 | |||
7b478c4c38 |
BIN
docs/favicon.ico
BIN
docs/favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@ -1,3 +1,3 @@
|
||||
{
|
||||
"appref": "v0.5.37"
|
||||
"appref": "v0.5.51"
|
||||
}
|
||||
|
BIN
docs/static/icons/favicon.ico
vendored
BIN
docs/static/icons/favicon.ico
vendored
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pxt-calliope",
|
||||
"version": "0.5.46",
|
||||
"version": "0.5.52",
|
||||
"description": "calliope target for PXT",
|
||||
"keywords": [
|
||||
"JavaScript",
|
||||
@ -30,7 +30,7 @@
|
||||
"typescript": "^1.8.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"pxt-core": "0.5.23",
|
||||
"pxt-core": "0.5.29",
|
||||
"less": "^2.6.0",
|
||||
"semantic-ui-less": "^2.2.4"
|
||||
}
|
||||
|
@ -351,8 +351,6 @@
|
||||
],
|
||||
"invertedMenu": true,
|
||||
"invertedToolbox": true,
|
||||
"blocklyOptions": {
|
||||
"trashcan": true
|
||||
}
|
||||
"blocklyOptions": { }
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*******************************
|
||||
Site Overrides
|
||||
*******************************/
|
||||
|
||||
@importGoogleFonts: false;
|
||||
|
@ -1,7 +1,17 @@
|
||||
/*******************************
|
||||
User Global Variables
|
||||
*******************************/
|
||||
@importGoogleFonts: false;
|
||||
|
||||
@importGoogleFonts: true;
|
||||
|
||||
@fontName : 'Roboto Mono';
|
||||
|
||||
@emSize : 14px;
|
||||
@fontSize : 13px;
|
||||
|
||||
/*-------------------
|
||||
Site Colors
|
||||
--------------------*/
|
||||
|
||||
@primaryColor: #3CB5B5;
|
||||
@secondaryColor: #43C9C9;
|
||||
@ -18,9 +28,11 @@
|
||||
@brown:#6B5B4C;
|
||||
@grey:#42495F;
|
||||
|
||||
@pageBackground : #FDFDFA;
|
||||
|
||||
|
||||
/*******************************
|
||||
PXT Overrides
|
||||
*******************************/
|
||||
|
||||
@backgroundColor: #FDFDFA;
|
||||
@blocklyToolboxColor: #F6F4E6;
|
||||
@blocklyToolboxColor: #F6F4E6;
|
||||
|
@ -32,6 +32,9 @@
|
||||
&:extend(.yellow all);
|
||||
}
|
||||
|
||||
/*******************************
|
||||
Blockly
|
||||
*******************************/
|
||||
|
||||
.blocklyTreeRow {
|
||||
border-radius:5px;
|
||||
@ -44,7 +47,7 @@
|
||||
|
||||
/* Blockly Text */
|
||||
.blocklyTreeLabel {
|
||||
font-family: "Gotham SSm A","Gotham SSm B","Montserrat","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif !important;
|
||||
font-family: @pageFont !important;
|
||||
}
|
||||
|
||||
.blocklyTreeLabel {
|
||||
|
@ -91,7 +91,4 @@
|
||||
|
||||
@fontPath : 'fonts';
|
||||
|
||||
@headerFont : 'Segoe UI', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
||||
@pageFont : 'Segoe UI', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
||||
|
||||
/* End Config */
|
||||
|
Reference in New Issue
Block a user