26 lines
345 B
CSS
26 lines
345 B
CSS
|
|
html {
|
||
|
|
/* this also defines the overall widget size as all sizes are in rem */
|
||
|
|
font-size: 13px;
|
||
|
|
height: 100%;
|
||
|
|
width: 100%;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
background-color: #e5e5e5;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-weight: 300 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: #2196f3;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
a:hover, a:focus {
|
||
|
|
color: #0a6ebd;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|