mirror of
https://github.com/nubenetes/awesome-kubernetes.git
synced 2026-03-05 03:00:37 +00:00
31 lines
686 B
CSS
31 lines
686 B
CSS
/* Applies to the entire body of the HTML document (except where overridden by more specific
|
|
selectors). */
|
|
|
|
body {
|
|
margin: 0px;
|
|
background-color:rgb(240,240,240);
|
|
font-family: arial, sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Applies to all <h1>...</h1> elements. */
|
|
h1 {
|
|
font-size: 35px;
|
|
font-weight: normal;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
/* Applies to all elements with <... class="someclass"> specified. */
|
|
.someclass { color: red; }
|
|
|
|
/* If you want the content area to always stretch to the available screen space,
|
|
reset max-width with the following CSS: */
|
|
.md-grid {
|
|
max-width: initial;
|
|
}
|
|
|
|
/* Applies to the element with <... id="someid"> specified. */
|
|
someid { color: green; }
|
|
|
|
|