| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- /******************************************
- * Hide elements intended for desktop and *
- * show elements for mobile. *
- ******************************************/
- .mobile{
- display: initial;
- }
- .desktop{
- display: none !important;
- }
- /******************************************
- * Styles for the site header that is *
- * always visible. *
- ******************************************/
- /* Header top container */
- div#header_m{
- width: 100%;
- margin: 0;
- padding: 0;
- transition: max-height 0.9s ease-in-out;
- }
- /* Main image of the header, contains the logo */
- div#header_m img#mobile_logo{
- float: left;
- width: 4em;
- margin-right: -4em;
- -webkit-filter: drop-shadow(0 0 0.2em #336);
- filter: url(#drop-shadow);
- filter: drop-shadow(0 0 0.2em #336);
- -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#444')";
- filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#444')";
- /*border: 0.05em solid #000011;*/
- border-radius: 100%;
- }
- div#header_menu_m div{
- padding-top: 0.6em;
- font-weight: bold;
- text-align: center;
- background-color: #aaaaaa;
- border: 1px solid #000000;
- }
- div#header_menu_m div#header_m_slider{
- display: none;
- background-color: #0078ff;
- }
- div#header_menu_m div#header_m_slider img{
- height: 1em;
- width: 1em;
- margin: auto;
- }
- div#header_menu_m div#header_m_title{
- vertical-align: middle;
- color: #ffffff;
- max-height: 3.5em;
- padding-top: 0.75em;
- transition: max-height 0.3s ease-in-out;
- overflow: hidden;
- padding: 0;
- background-color: #0078ff
- }
- div#header_menu_m div#header_m_title span {
- display: block;
- margin: 0.4em;
- }
- div#header_menu_m div#header_m_title span img{
- vertical-align: middle;
- }
- div#header_menu_m div#header_m_title img{
- height: 1.9em;
- width: 1.9em;
- float: center;
- }
- div#header_menu_m div.header_m_link{
- /* display: none; */
- max-height: 0;
- padding: 0;
- border: 0;
- overflow: hidden;
- transition: max-height 0.3s ease-in-out;
- background-color: #0078ff;
- }
- div#header_menu_m div.header_m_link a{
- color: #ffffff;
- text-shadow: 0 0 0.5em #444444;
- display: block;
- width: 100%;
- height: 2.8em;
- }
- /******************************************
- * Styles for the site footer that is *
- * always visible. *
- ******************************************/
- /* Table containing the footer elemnts */
- div#footer div#footer_table{
- display: block;
- }
- div#footer div#footer_table div.tr{
- display: block;
- }
- /* Each main section of the footer */
- div#footer div#footer_table div.td{
- width: 100%;
- display: block;
- text-align: center;
- margin-bottom: 1em;
- margin: 0;
- padding: 0;
- }
- /* Images for language selection */
- img.lang{
- height: 1.5em;
- margin: 0.5em 1em 0.5em 1em;
- border-radius: 0.2em;
- border: 0.1em solid #222222;
- box-shadow: 0 0 0.3em #333333;
- }
- img.lang:hover{
- box-shadow: 0 0 0.3em #333333; /*NONE*/
- }
- /* Mobile app link image in the footer */
- img.app{
- height: 1.5em;
- margin: 0.5em 1em 0.5em 1em;
- border-radius: 0.2em;
- border: 0.1em solid #222222;
- box-shadow: 0 0 0.3em #333333;
- }
- img.app:hover{
- box-shadow: 0 0 0.5em #666666; /*NONE*/
- }
- /* Each of the social links in the footer */
- img.footer_social_icon{
- height: 3em;
- margin: 0.25em;
- }
- img.footer_social_icon:hover{
- -webkit-filter: drop-shadow(0 0 0.2em #444444);/*NONE*/
- filter: drop-shadow(0 0 0.2em #444444);/*NONE*/
- }
- /******************************************
- * Styles for the main block that compose *
- * the site. Most of the pages share the *
- * same structure.
- ******************************************/
- /* Content */
- div#content{
- margin: auto;
- width: 95%;
- max-width: initial;
- min-width: initial;
- }
- /******************************************
- * Styles for the ad window. *
- ******************************************/
- div#ad{
- width: 70%;
- position: fixed;
- bottom: -25em;
- left: 15%;
- right: 15%
- }
- div#ad h3{
- margin-top: 0;
- }
- div#ad div#ad_details{
- font-size: 90%;
- margin: 0.3em;
- }
- div#ad div#ad_details img{
- height: 2em;
- width: 2em;
- margin: 0.3 0.5em 0.3 0.5em;
- }
- div#ad div.entry div#ad_image_container{
- max-height: 9.5em;
- margin: 0.5em 0.6em 0.5em 0.6em;
- text-align: center;
- }
- div#ad div.entry a{
- font-size: 100%;
- }
|