| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- .desktop{ /* Elements to be shown only in large screens. */
- display: initial;
- }
- @media screen and (max-width : 990px){
- .desktop{
- display: none;
- }
- }
- .mobile{ /* Elements to be shown only in small screens. */
- display: none;
- }
- @media screen and (max-width : 990px){
- .mobile{
- display: initial !important;
- }
- }
- .bold{
- font-weight: bold;
- }
- .italic{
- font-style: italic;
- }
- .pointer {
- cursor: pointer;
- }
- .hidden{
- display: none;
- }
- .pointer{
- cursor: pointer;
- }
- .error{
- border-color: #ffaaaa;
- }
- .color_Fire{
- color: #f72302;
- }
- .color_Wind{
- color: #fcc923;
- }
- .color_Water{
- color: #0285f7;
- }
- .color_Light{
- color: #f2f7aa;
- }
- .color_Dark{
- color: #4a0282;
- }
- .border_Fire{
- border-color: #f72302;
- }
- .border_Wind{
- border-color: #fcc923;
- }
- .border_Water{
- border-color: #0285f7;
- }
- .border_Light{
- border-color: #f2f7aa;
- }
- .border_Dark{
- border-color: #4a0282;
- }
- .background_Fire{
- background-color: #f72302;
- }
- .background_Wind{
- background-color: #fcc923;
- }
- .background_Water{
- background-color: #0285f7;
- }
- .background_Light{
- background-color: #f2f7aa;
- }
- .background_Dark{
- background-color: #4a0282;
- }
- html {
- height: 100%;
- }
- body{
- height: 100%;
- padding: 0;
- margin: 0;
- background-color: #000000;
- }
- a{
- color: #08fff6;
- text-shadow: 0 0 0.5em #000000;
- text-decoration: none;
- transition: all .3s ease-in-out;
- }
- a:hover{
- color: #cccccc;
- text-shadow: 0 0 0.1em #000000;
- }
- .fake_a{ /* Elements that look and act as links. */
- color: #08fff6;
- text-shadow: 0 0 0.5em #000000;
- text-decoration: none;
- cursor: pointer;
- transition: all .3s ease-in-out;
- }
- .fake_a:hover{
- color: #cccccc;
- text-shadow: 0 0 0.1em #000000;
- }
- img.slider{
- width: 1em;
- height: 1em;
- vertial-align: middle;
- transition: all .3s ease-in-out;
- }
- div#cover{ /* Page cofer for opening floating windows. */
- display: none;
- background-color: #000000bb;
- opacity: 0;
- transition: opacity .3s ease-in-out;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- div#header{
- border-bottom: 0.3em solid #f2c920;
- border-left: 0.3em solid #f2c920;
- border-right: 0.3em solid #f2c920;
- border-bottom-right-radius: 2em;
- border-bottom-left-radius: 2em;
- box-shadow: 0 0 1em #ffffff;
- margin: 0 0 2em 0;
- background-color: #884444;
- }
- div#header div#logo{
- margin: auto;
- display: inline-block;
- vertical-align: middle;
- width: 20em;
- text-align: center;
- }
- div#header div#logo h1#logo_text{
- font-style: italic;
- margin: -2em auto -0.7em auto;
- color: #ffffff;
- text-shadow: 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.4em #000000, 0 0 0.4em #000000, 0 0 0.4em #000000, 0 0 1em #000000, 0 0 1em #000000;
- }
- div#header div#logo h1#logo_text span.large{
- font-size: 150%;
- }
- div#header div#logo h1#logo_text span.small{
- font-size: 70%;
- margin-left: -0.5em;
- }
- div#header nav{
- display: inline-block;
- vertical-align: middle;
- width: 30em;
- }
- div#header nav a{
- font-size: 2em;
- font-weight: bold;
- margin: 0.5em;
- color: #ffffff;
- text-decoration: none;
- position: relative;
- transition: all .4s ease-in-out;
- }
- div#header nav a:hover{
- color: #333333;
- text-shadow: 0 0 0.7em #ffffff;
- }
- div#footer{
- color: #ffffff;
- font-size: 110%;
- text-align: center;
- border-top: 0.3em solid #f2c920;
- border-left: 0.3em solid #f2c920;
- border-right: 0.3em solid #f2c920;
- border-top-right-radius: 2em;
- border-top-left-radius: 2em;
- box-shadow: 0 0 1em #ffffff;
- margin: 2em 0 0 0;
- background-color: #884444;
- padding: 1em 2em 3em 2em;
- }
- div#footer table#footer_table{
- margin-left: auto;
- margin-right: auto;
- width: 95%;
- table-layout: fixed;
- }
- div#footer table#footer_table td{
- width: 33%;
- padding: 0.5em;
- }
- div#content{ /* Everything between the header and the footer. */
- width: 90%;
- margin: auto;
- max-width: 90em;
- }
- div.section{
- margin: 0.5em;
- padding: 1em;
- background-color: #ccaa88;
- border: 0.1em solid #000000;
- overflow: hidden;
- }
- @media screen and (max-width : 990px){
- div.section{
- margin: 1em;
- }
- }
- div.section h3.section_title{
- font-weight: bold;
- color: #ffffff;
- background-color: #886644;
- font-size: 120%;
- padding: 0.2em 0.5em 0.2em 0.5em;
- margin: -1em -1em 1em -1em;
- }
- div.section div.entry{ /* Separated elements in a section. */
- border: 0.1em solid #333333;
- border-radius: 0.3em;
- padding: 0.5em;
- margin: 0.5em;
- transition: all .4s ease-in-out;
- }
- input[type=submit]{
- font-weight: bold;
- color: #cccccc;
- background-color: #555555;
- border: 0.143em solid #bbbbbb;
- border-radius: 0.429em;
- padding: 0.5em;
- text-shadow: 0 0 0.75em #000000;
- cursor: pointer;
- }
- input[type=button], input[type=submit]{
- font-size: 115%;
- font-weight: bold;
- color: #ffffff;
- padding: 0.7em 1.3em 0.7em 1.3em;
- background-color: #351e0b;
- border: 0.2em solid #f2c920;;
- border-radius: 0.5em;
- text-shadow: 0 0 0.2em #000000;
- cursor: pointer;
- box-shadow: 0 0 0.3em #000000;
- }
- input[type=text], input[type=number]{
- font-weight: bold;
- color: #000000;
- padding: 0 0.3em;
- background-color: #f3eeea;
- border: 0.2em solid #f2c920;;
- border-radius: 0.5em;
- text-shadow: 0 0 0.1em #ffffff;
- box-shadow: 0 0 0.3em #000000;
- }
- input[type=checkbox]{
- height: 1.5em;
- width: 1.5em;
- font-weight: bold;
- color: #ffffff;
- padding: 0.7em 1.3em 0.7em 1.3em;
- background-color: #351e0b;
- border: 0.2em solid #f2c920;;
- border-radius: 0.5em;
- text-shadow: 0 0 0.2em #000000;
- cursor: pointer;
- box-shadow: 0 0 0.3em #000000;
- }
- select{
- font-size: 115%;
- font-weight: bold;
- color: #ffffff;
- padding: 0 0.3em;
- background-color: #351e0b;
- border: 0.2em solid #f2c920;;
- border-radius: 0.5em;
- text-shadow: 0 0 0.2em #000000;
- cursor: pointer;
- box-shadow: 0 0 0.3em #000000;
- }
- a.a_button{ /* Links that look like buttons. */
- font-size: 115%;
- font-weight: bold;
- color: #ffffff;
- padding: 0.7em 1.3em 0.7em 1.3em;
- background-color: #351e0b;
- border: 0.2em solid #f2c920;;
- border-radius: 0.5em;
- text-shadow: 0 0 0.2em #000000;
- cursor: pointer;
- box-shadow: 0 0 0.3em #000000;
- display: inline-block;
- }
- ::placeholder {
- color: #777777;
- }
|