2016-10-24 14:55:21 -07:00
|
|
|
/* Import all components */
|
2017-01-28 21:55:48 -08:00
|
|
|
@import 'pxtsemantic';
|
2016-11-01 17:48:29 -07:00
|
|
|
@import 'pxt';
|
2018-04-21 10:25:43 -07:00
|
|
|
@import 'blockly-toolbox';
|
2016-10-27 16:12:53 -07:00
|
|
|
@import 'themes/default/globals/site.variables';
|
|
|
|
@import 'themes/pxt/globals/site.variables';
|
|
|
|
@import 'site/globals/site.variables';
|
|
|
|
|
|
|
|
/* Reference import */
|
|
|
|
@import (reference) "semantic.less";
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
Add your custom CSS here
|
|
|
|
*******************************/
|
|
|
|
|
2017-06-13 17:47:36 -07:00
|
|
|
/* Roboto font */
|
|
|
|
@RobotoFont: data-uri("../docs/static/fonts/Roboto_400_normal.woff");
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
src: @RobotoFont format("woff");
|
|
|
|
}
|
|
|
|
|
2017-01-07 17:35:54 -08:00
|
|
|
.ui.button.download-button {
|
2017-04-06 16:58:47 -07:00
|
|
|
&:extend(.ui.purple.button all);
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
|
|
|
|
2017-01-07 17:35:54 -08:00
|
|
|
.ui.button.download-button:hover {
|
2017-09-07 13:42:08 -07:00
|
|
|
background-color: #00ED00;
|
2018-08-21 12:00:18 -04:00
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.docs.inlinebutton.ui.button.download-button:hover {
|
|
|
|
&:extend(.ui.purple.button all);
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
|
|
|
|
2017-04-06 16:58:47 -07:00
|
|
|
.ui.button.play-button.play-button-full {
|
2016-12-01 21:58:16 -08:00
|
|
|
&:extend(.ui.inverted.button all);
|
|
|
|
}
|
|
|
|
|
2017-01-07 17:35:54 -08:00
|
|
|
.ui.button.getting-started-btn {
|
2017-04-06 16:58:47 -07:00
|
|
|
&:extend(.ui.orange.button all);
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
|
|
|
|
2017-01-12 10:45:39 -08:00
|
|
|
.ui.button.editortools-btn {
|
2017-04-06 16:58:47 -07:00
|
|
|
&:extend(.ui.blue.button all);
|
2017-01-12 10:45:39 -08:00
|
|
|
}
|
|
|
|
|
2017-05-25 15:29:32 -07:00
|
|
|
.ui.button.exit-tutorial-btn {
|
|
|
|
&:extend(.ui.blue.button all);
|
|
|
|
}
|
|
|
|
|
2017-01-07 17:35:54 -08:00
|
|
|
#filelist, #editortools {
|
2019-03-11 17:39:19 -07:00
|
|
|
background: #fff data-uri("../docs/static/logo_texture.png") 0 0 repeat !important;
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
|
|
|
|
2017-01-12 10:45:39 -08:00
|
|
|
#downloadArea {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
|
|
|
|
2018-10-25 16:09:10 -04:00
|
|
|
.ui.home {
|
|
|
|
.getting-started-segment {
|
|
|
|
background-position: 50% 25%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-01 18:35:10 -08:00
|
|
|
/* Mobile */
|
2016-12-31 01:43:45 -08:00
|
|
|
@media only screen and (max-width: @largestMobileScreen) {
|
2016-12-01 18:35:10 -08:00
|
|
|
#filelist {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
2018-11-09 13:26:06 -08:00
|
|
|
#blocklySearchArea {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tablet */
|
2016-12-31 01:43:45 -08:00
|
|
|
@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
|
2017-01-07 17:35:54 -08:00
|
|
|
#filelist {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Small Monitor */
|
2016-12-31 01:43:45 -08:00
|
|
|
@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) {
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Large Monitor */
|
2016-12-31 01:43:45 -08:00
|
|
|
@media only screen and (min-width: @largeMonitorBreakpoint) {
|
2016-12-01 18:35:10 -08:00
|
|
|
}
|
2018-09-14 11:25:53 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* Download dialog */
|
|
|
|
.ui.downloaddialog.modal>.content {
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
2019-03-21 08:04:48 -07:00
|
|
|
|
|
|
|
.ui.webusbpair, .ui.upload {
|
|
|
|
.firmware {
|
|
|
|
background-color: #FFFFCE;
|
|
|
|
div.image {
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
padding: 1rem;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height:100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.instructions {
|
|
|
|
img {
|
|
|
|
margin-bottom:1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|