static-cms/src/index.css

37 lines
647 B
CSS
Raw Normal View History

html {
box-sizing: border-box;
2016-07-07 19:20:53 -03:00
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
2016-07-14 17:17:18 -03:00
margin: 0;
2016-08-31 10:53:31 -07:00
font-family: Roboto,"Helvetica Neue",HelveticaNeue,Helvetica,Arial,sans-serif;
2016-07-07 19:20:53 -03:00
}
*, *:before, *:after {
box-sizing: inherit;
}
2016-07-05 15:48:18 -03:00
body {
2016-07-08 05:57:06 -03:00
font-family: 'Roboto', sans-serif;
height: 100%;
2016-08-31 10:54:12 -07:00
background-color: #f2f5f4;
color:#7c8382;
2016-07-14 17:17:18 -03:00
margin: 0;
}
header {
2016-08-31 10:44:13 -07:00
background-color: #596362;
2016-07-14 17:17:18 -03:00
box-shadow: 0 1px 2px 0 rgba(0,0,0,0.22);
height: 54px;
2016-08-31 10:44:13 -07:00
border-bottom:2px solid #3ab7a5;
2016-07-14 17:17:18 -03:00
position: fixed;
width: 100%;
z-index: 999;
}
2016-07-05 15:48:18 -03:00
:global #root, :global #root > * {
height: 100%;
}
2016-07-14 17:17:18 -03:00
2016-07-21 11:40:41 -03:00
h1, h2, h3, h4, h5, h6, p {
2016-07-14 17:17:18 -03:00
margin: 0;
}