SIGN IN SIGN UP
connors / photon UNCLAIMED

The fastest way to build beautiful Electron apps using simple HTML and CSS

0 0 1 SCSS
2015-09-27 22:08:52 -07:00
//
// Base styles
// --------------------------------------------------
// Use box sizing on all the things!
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
height: 100%;
width: 100%;
overflow: hidden;
}
// We fix position the body and scroll `.content`.
body {
height: 100%;
margin: 0;
padding: 0;
2015-09-27 22:24:14 -07:00
font: 13px/1.6 system, -apple-system, ".SFNSDisplay-Regular", "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;
2015-09-27 22:08:52 -07:00
color: #000;
background-color: #fff;
}
// Utility classes
.text-center {
text-align: center;
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.clearfix {
@include clearfix();
}