|
|
- /**
- * variables
- *
- */
-
- /**
- * default elements
- *
- */
-
- body {
- color: #000;
- background-color: #000084;
- font-family: "PxPlus IBM VGA8", sans-serif;
- font-style: normal;
- font-size: 1.2rem;
- }
-
- *:first-letter {
- color: #fefe5b;
- }
-
- a {
- color: #000;
- text-decoration: none;
- }
-
- /**
- * navigation
- *
- *
- */
-
- .navbar {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- text-align: center;
- background-color: #bbbbbb;
- }
-
- .navbar ul {
- list-style: none;
- margin: 0;
- padding: 0.6em 0.8em;
- }
-
- .navbar ul li {
- display: inline-block;
- }
-
- .navbar ul li a {
- display: inline-block;
- padding: 0.1em;
- }
-
- .navbar ul li a:hover {
- background-color: #008106;
- }
-
- .navbar ul li.current a {
- background-color: #008106;
- }
-
- /**
- *
- *
- */
-
- main {
- max-width: 960px;
- margin: 2em auto 0;
- }
-
- /**
- * footer
- *
- *
- */
-
- footer {
- text-align: center;
- font-size: 3rem;
- width: 100%;
- background: #000;
- padding: 0.8em 0;
- }
-
- footer i {
- color: #fff !important;
- }
-
- /**
- * section
- *
- *
- */
-
- .section {
- padding: 4em;
- margin: 1em 0;
- line-height: 1.8;
- background-color: #bbbbbb;
- }
-
- /**
- * icons
- *
- *
- */
-
- [class^=icon-tiny],
- [class*=" icon-tiny"] {
- font-family: "PxPlus IBM VGA8", sans-serif !important;
- font-style: normal;
- color: #fefe5b;
- }
-
- /**
- * tiny-tiny-hamburger
- *
- *
- */
-
- .tiny-one-page__inner {
- padding: 4px 8px 5px;
- }
-
- .tiny-one-page__modal {
- height: auto;
- max-height: 0;
- overflow: hidden;
- transition: max-height 0.2s;
- }
-
- .tiny-one-page__button {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- border: none;
- background: transparent;
- padding: 0.3em 0.5em;
- }
-
- .tiny-one-page__button:hover {
- cursor: pointer;
- outline: none;
- background-color: #bbbbbb;
- }
-
- .tiny-one-page__button:focus {
- outline: none;
- }
-
|