mirror of
https://github.com/taigrr/wails.git
synced 2026-04-14 10:50:53 -07:00
39 lines
1.1 KiB
CSS
39 lines
1.1 KiB
CSS
#app {
|
|
font-family: "Roboto", Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #eee;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background-color: #131313;
|
|
background-size: 20px 20px;
|
|
}
|
|
|
|
.logo {
|
|
width: 16em;
|
|
}
|
|
|
|
/* roboto-regular - latin */
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url("../fonts/roboto/roboto-v18-latin-regular.eot"); /* IE9 Compat Modes */
|
|
src: local("Roboto"), local("Roboto-Regular"),
|
|
url("../fonts/roboto/roboto-v18-latin-regular.eot?#iefix")
|
|
format("embedded-opentype"),
|
|
/* IE6-IE8 */ url("../fonts/roboto/roboto-v18-latin-regular.woff2")
|
|
format("woff2"),
|
|
/* Super Modern Browsers */
|
|
url("../fonts/roboto/roboto-v18-latin-regular.woff") format("woff"),
|
|
/* Modern Browsers */ url("../fonts/roboto/roboto-v18-latin-regular.ttf")
|
|
format("truetype"),
|
|
/* Safari, Android, iOS */
|
|
url("../fonts/roboto/roboto-v18-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
|
|
}
|