Some Fixes (#83)

* change simulator svg

* change radio image

* Remove google fonts cdn

* change color of 'advanced' button
This commit is contained in:
Amerlander
2020-02-14 02:24:42 +01:00
committed by GitHub
parent a52fe73cb3
commit a4f86fb7ac
14 changed files with 870 additions and 955 deletions

View File

@ -2,7 +2,7 @@
User Global Variables
*******************************/
@importGoogleFonts: true;
@importGoogleFonts: false;
@fontName : 'Roboto Mono';
@ -24,7 +24,7 @@
@brown:#6B5B4C;
@grey:#42495F;
@pageBackground : #FDFDFA;
@pageBackground: #FDFDFA;
/*******************************
PXT Overrides

View File

@ -14,13 +14,21 @@
*******************************/
/* Roboto font */
@RobotoFont: data-uri("../docs/static/fonts/Roboto_400_normal.woff");
@font-face {
font-family: 'Roboto';
src: @RobotoFont format("woff");
}
// @RobotoMonoFont: data-uri("../docs/static/fonts/Roboto_Mono_400_normal.woff2");
/* roboto-mono-regular - latin */
@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
src: url('../static/fonts/roboto-mono-v7-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Roboto Mono'), local('RobotoMono-Regular'),
url('../static/fonts/roboto-mono-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../static/fonts/roboto-mono-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('../static/fonts/roboto-mono-v7-latin-regular.woff') format('woff'), /* Modern Browsers */
url('../static/fonts/roboto-mono-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('../static/fonts/roboto-mono-v7-latin-regular.svg#RobotoMono') format('svg'); /* Legacy iOS */
}
.ui.button.download-button {
&:extend(.ui.purple.button all);
}