Tweak font
This commit is contained in:
parent
09b036f07b
commit
54aa458ba4
2 changed files with 14 additions and 12 deletions
|
@ -15,7 +15,7 @@ exports.load = function (appUrl) {
|
||||||
width: 800,
|
width: 800,
|
||||||
height: 600,
|
height: 600,
|
||||||
autoHideMenuBar: true,
|
autoHideMenuBar: true,
|
||||||
backgroundColor: '#A5ECFA',
|
backgroundColor: '#FFFFFF',
|
||||||
useContentSize: true
|
useContentSize: true
|
||||||
})
|
})
|
||||||
mainWindow.loadURL(appUrl)
|
mainWindow.loadURL(appUrl)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
body {
|
body {
|
||||||
color: #205161;
|
color: #205161;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
font-family: 'Helvetica Neue', 'Open Sans', Helvetica, Arial, sans-serif;
|
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
@ -54,10 +54,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
pre, code {
|
pre, code {
|
||||||
font-family: "Menlo","Lucida Console",monospace;
|
font-family: "Menlo", "Lucida Console", monospace;
|
||||||
border: 1px solid #076274;
|
border: 1px solid #e0e5e6;
|
||||||
background-color: #076274;
|
background-color: #f6f8f8;
|
||||||
color: #C5F3FC;
|
color: #466a72;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,18 +75,20 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#holder {
|
#holder {
|
||||||
border: 2px dashed #448691;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
height: 300px;
|
height: 275px;
|
||||||
color: #45828E;
|
border: 1px solid #e0e5e6;
|
||||||
font-size: 40px;
|
background-color: #f6f8f8;
|
||||||
line-height: 300px;
|
color: #466a72;
|
||||||
|
border-radius: 3px;
|
||||||
|
font-size: 30px;
|
||||||
|
line-height: 275px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#holder.hover {
|
#holder.hover {
|
||||||
background-color: #7BDCEF;
|
border-color: #2ab0cb;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in a new issue